Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
torture
/
pr88861.C
blob: ff66d5e1635457dca889768ae12c51a314258d5e [
file
] [
log
] [
blame
]
// { dg-options "-fnon-call-exceptions" }
struct
Ax
{
int
n
,
a
[];
};
#if __SIZEOF_INT__ < 4
int
i
=
12345
;
#else
int
i
=
12345678
;
#endif
int
main
()
{
static
Ax
s
{
456
,
i
};
((
s
.
a
[
0
])
?
(
void
)
0
:
(
void
)
0
);
}