(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr63480.c
       1  /* PR c/63480 */
       2  /* { dg-do compile } */
       3  /* { dg-options "-Wmissing-field-initializers" } */
       4  
       5  /* Test that we don't warn about initializing with { }.  */
       6  
       7  struct S { int a, b, c; } s = { };
       8  
       9  void
      10  foo (void)
      11  {
      12    struct S s = { }; 
      13    struct S s2 = (struct S){ };
      14  }