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 = {} } };
}