New test.

From-SVN: r47589
This commit is contained in:
Richard Henderson 2001-12-03 17:25:32 -08:00
parent 87d4ad0804
commit 0d204c2d41
1 changed files with 22 additions and 0 deletions

View File

@ -0,0 +1,22 @@
/* { 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;
}