(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr63567-4.c
       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" } */