2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / gcc.c-torture / unsorted / layout.c
blob04c825df6451ed5b55b1b7b4feac01befcd4a767
1 struct foo
3 char a;
4 };
6 foo ()
8 struct foo bar[3];
9 bar[0].a = '0';
10 bar[1].a = '1';
11 bar[2].a = '2';
12 foof (bar);