1 struct a
2 {
3 int foo,bar;
4 };
5 struct b
6 {
7 struct a a[10];
8 };
9
10 extern struct b *bptr;
11 extern int i;
12
13 void
14 inline_me_late (void)
15 {
16 bptr->a[i].foo=1;
17 }
18