blob: d62640677b0a27db99883f4f2cb2782d96151e19 [file] [log] [blame]
/* PR c/63567 */
/* { dg-do compile } */
/* { dg-options "" } */
struct T { int i; };
struct S { struct T t; };
struct S s = { .t = { (int) { 1 } } };