Sign in
llvm
/
llvm-archive
/
48649d2c83b557841c9e5c978d9ab5af13cb52e5
/
.
/
llvm-gcc-4.0
/
gcc
/
testsuite
/
gcc.dg
/
struct-alias-1.c
blob: 6cfadcf2cb64b681cbc8f4f822e37d92ea760f91 [
file
] [
log
] [
blame
]
/* { 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
;
}