Sign in
gnu
/
gcc.git
/
refs/heads/master
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr87110.c
blob: 12e28c470e4ed66ea2db58ef11852137d2095557 [
file
] [
log
] [
blame
]
enum
a
{
b
,
c
};
struct
d
{
_Bool
e
;
enum
a f
;
};
int
g
,
h
;
void
i
(
void
)
{
struct
d j
[
h
];
j
[
0
]
=
(
struct
d
){.
f
=
c
};
for
(;
g
;)
(
struct
d
){};
}