URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-dev/] [or1k-gcc/] [gcc/] [testsuite/] [gcc.dg/] [anon-struct-15.c] - Rev 801
Go to most recent revision | Compare with Previous | Blame | View Log
/* Test diagnostics for duplicate field names involving anonymous struct or union as first field. PR 46889. */ /* { dg-do compile } */ /* { dg-options "" } */ struct foo { union { struct { unsigned long time_stamp; }; struct { int *page; }; }; int *page; /* { dg-error "duplicate member" } */ };
Go to most recent revision | Compare with Previous | Blame | View Log