(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.c-torture/
compile/
init-3.c
       1  struct empty { };
       2  struct something {
       3  	int spacer;
       4  	struct empty foo;
       5  	int bar;
       6  };
       7  
       8  struct something X = {
       9  	foo: { },
      10  	bar: 1,
      11  };