URL
https://opencores.org/ocsvn/openrisc/openrisc/trunk
Subversion Repositories openrisc
[/] [openrisc/] [trunk/] [gnu-old/] [gcc-4.2.2/] [gcc/] [testsuite/] [gcc.dg/] [bitfld-7.c] - Rev 816
Compare with Previous | Blame | View Log
/* Test for rejection of typeof on bit-fields. PR c/10333. */ /* Origin: Joseph Myers <jsm@polyomino.org.uk> */ /* { dg-do compile } */ /* { dg-options "" } */ struct { int a:1; } x; typeof (x.a) z; /* { dg-error "applied to a bit-field" "typeof" } */