(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr63567-3.c
       1  /* PR c/63567 */
       2  /* { dg-do compile } */
       3  /* { dg-options "" } */
       4  
       5  struct T { int i; };
       6  struct S { struct T t; };
       7  struct S s = { .t = { (int) { 1 } } };