Release coccinelle-0.2.5-rc2
[bpt/coccinelle.git] / tests / ar.c
1 struct bar { struct foo *a; struct foo b[27]; };
2
3 int main() {
4 struct foo *x;
5 struct bar *y;
6 struct foo z[15];
7
8 x->y = 12;
9 y->a->y = 12;
10 y->b[7].y = 12;
11 z[15].y = 12;
12 }