Sign in
gnu
/
gcc.git
/
ab7c7b46c35ed1be68d4c020a2f20ee96f68b64b
/
.
/
gcc
/
testsuite
/
gcc.dg
/
c90-anon-struct-1.c
blob: a3eb7f7e392d78efe5b9508d2c7655fe91d14f8f [
file
] [
log
] [
blame
]
/* Test for anonymous structures and unions not permitted in C90. */
/* { dg-do compile } */
/* { dg-options "-std=iso9899:1990 -pedantic-errors" } */
struct
s
{
int
a
;
struct
{
int
b
;
};
/* { dg-error "unnamed structs" } */
};