aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gcc.dg/bitfld-14.c
blob: eca0b03def04fa2354611608a3bebd923c472071 (plain)
1
2
3
4
5
6
7
8
9
10
11
/* Test for non-integer bit-field widths.  */
/* Origin: Joseph Myers <joseph@codesourcery.com> */
/* { dg-do compile } */
/* { dg-options "" } */

enum e { E, F };
struct s {
  int a : (void *)4; /* { dg-error "error: bit-field 'a' width not an integer constant" } */
  int b : (enum e)F;
  int c : (_Bool)1;
};