blob: 87d4c3438eb7586af1c22d8790297d209f5c0432 [file] [log] [blame]
/* Test for anonymous structures and unions not permitted in C99. */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1999 -pedantic-errors" } */
struct s
{
int a;
struct
{
int b;
}; /* { dg-error "unnamed structs" } */
};