aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/bitfld-10.c
blob: 156929f49fd7a132d2d06839f8a8e8ce10f0bdc6 (plain)
1
2
3
4
5
6
7
8
/* 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 "error: 'sizeof' applied to a bit-field" } */