Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
execute
/
960512-1.c
blob: 928cb42bad67d87bef57541773fe800952f0ab09 [
file
] [
log
] [
blame
]
void
abort
(
void
);
void
exit
(
int
);
__complex__
double
f
()
{
int
a
[
40
];
__complex__
double
c
;
a
[
9
]
=
0
;
c
=
a
[
9
];
return
c
;
}
int
main
(
void
)
{
__complex__
double
c
;
if
(
c
=
f
())
abort
();
exit
(
0
);
}