Release coccinelle-0.1.1
[bpt/coccinelle.git] / tests / struct_metavar.res
1 struct foo {
2 int x;
3 struct bar first;
4 int y;
5 struct xxx second;
6 int z;
7 };
8
9 int main() {
10 struct foo *a;
11 struct notfoo *b;
12
13
14 f(b->first);
15 f(b->second);
16 }
17