(root)/
gcc-13.2.0/
gcc/
testsuite/
gcc.dg/
anon-struct-4.c
       1  /* Test anonymous structures with type qualifiers.  Bug 8420.  */
       2  /* Origin: Joseph Myers <jsm@polyomino.org.uk> */
       3  /* { dg-do compile } */
       4  /* { dg-options "-std=gnu89" } */
       5  
       6  struct s {
       7    struct { int a; };
       8    const struct { int b; };
       9    struct { int c; } volatile;
      10  };