blob: e6bff6c74367631f4d77dcf2fe8b5c411288fb22 [file] [log] [blame]
/* 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 "error: '__alignof' applied to a bit-field" } */