FSF GCC merge 02/23/03
[official-gcc.git] / gcc / testsuite / gcc.dg / struct-alias-1.c
blob6cfadcf2cb64b681cbc8f4f822e37d92ea760f91
1 /* { dg-do link } */
2 /* { dg-options "-O2" } */
4 struct S {
5 int a[3];
6 int x;
7 };
9 extern void link_error(void);
10 static int i;
12 int main()
14 struct S s;
16 s.x = 0;
17 s.a[i] = 1;
18 if (s.x != 0)
19 link_error ();
21 return 0;