Sign in
gnu
/
gcc
/
e5cfb9cac1d7aba9a8ea73bfe7922cfaff9d61f3
/
.
/
gcc
/
testsuite
/
gcc.dg
/
c99-anon-struct-1.c
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" } */
};