URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [c90-anon-struct-1.c] - Rev 689
Compare with Previous | Blame | View Log
/* 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" } */ };