blob: ce722314919d32aa06db3b706bc0c0343da751e0 [file] [log] [blame]
/* 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" } */