Release coccinelle-0.2.3rc6
[bpt/coccinelle.git] / tests / struct_metavar.c
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 f(a->first);
13 f(a->second);
14 f(a->second);
15 f(b->first);
16 f(b->second);
17 }
18