blob: 0ca6c45cc23cf6496aa30dc5e0219a4b45e867b2 [file] [log] [blame]
/* PR c/63567 */
/* { dg-do compile } */
/* { dg-options "-Wpedantic" } */
struct T { int i; };
struct S { struct T t; };
struct S s = { .t = { (int) { 1 } } }; /* { dg-warning "initializer element is not constant" } */