Release coccinelle-0.2.3rc6
[bpt/coccinelle.git] / tests / struct.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 f(a->first);
12 f(a->second);
13 }
14