1 /* PR c/63567 */
2 /* { dg-do compile } */
3 /* { dg-options "-Wpedantic" } */
4
5 struct T { int i; };
6 struct S { struct T t; };
7 struct S s = { .t = { (int) { 1 } } }; /* { dg-warning "initializer element is not constant" } */