Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
gcc.c-torture
/
compile
/
pr79089.c
blob: 523798824b6d3ebe8d541d60359fa6392f83b9f3 [
file
] [
log
] [
blame
]
/* PR c/79089 */
struct
S
{
int
b
;
};
struct
T
{
struct
S c
;
}
a
;
int
d
;
struct
S e
;
void
foo
()
{
e
=
({
d
++;
a
.
c
=
(
struct
S
)
{};
});
}