Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr85704.c
blob: 52dd50433d6481f15a7847f4d514dd95d5292fd0 [
file
] [
log
] [
blame
]
/* PR c/85704 */
struct
C
{
struct
{}
c
;
};
struct
D
{
int
d
;
struct
C e
;
int
f
;
};
void
foo
(
struct
D
*
x
)
{
*
x
=
(
struct
D
)
{
.
e
=
(
struct
C
)
{
.
c
=
{}
}
};
}