(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
pr93577-5.c
       1  /* Test ICE with designated initializer in compound literal with bad
       2     type name (ICE seen with early version of fix for bug 93577 but not
       3     covered in other tests).  */
       4  /* { dg-do compile } */
       5  /* { dg-options "" } */
       6  
       7  void *
       8  f (void)
       9  {
      10    return &(const bad_type) { .a = 0 }; /* { dg-error "unknown type name" } */
      11  }