aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.c-torture/compile/pr85704.c
blob: 52dd50433d6481f15a7847f4d514dd95d5292fd0 (plain)
1
2
3
4
5
6
7
8
9
10
/* 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 = {} } };
}