8sa1-gcc/gcc/testsuite/gcc.dg/struct-alias-1.c
Richard Henderson 0d204c2d41 New test.
From-SVN: r47589
2001-12-03 17:25:32 -08:00

23 lines
235 B
C

/* { dg-do link } */
/* { dg-options "-O2" } */
struct S {
int a[3];
int x;
};
extern void link_error(void);
static int i;
int main()
{
struct S s;
s.x = 0;
s.a[i] = 1;
if (s.x != 0)
link_error ();
return 0;
}