rt_gccstream/gcc/testsuite/gcc.dg/bitfld-10.c

9 lines
254 B
C

/* Test for rejection of sizeof on bit-fields. */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "" } */
struct { int a : 1; } x;
int r = sizeof (x.a); /* { dg-error "'sizeof' applied to a bit-field" } */