blob: e6bff6c74367631f4d77dcf2fe8b5c411288fb22 (
plain)
1
2
3
4
5
6
7
8
|
/* 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" } */
|