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