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

9 lines
263 B
C

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