aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/bitfld-11.c
blob: c7fe6a510aa2b21b2a565566689e6e656929e730 (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 "'__alignof' applied to a bit-field" } */