blob: fcb381c86b6b601897db9f06c6e733676a122ff0 [file] [log] [blame]
/* Test invalid bit-field types: bug 18498. */
/* { dg-do compile } */
/* { dg-options "" } */
int
main(void)
{
struct X {
int s[20] : 1; /* { dg-error "bit-field 's' has invalid type" } */
int *p : 2; /* { dg-error "bit-field 'p' has invalid type" } */
int (*f)(float) : 3; /* { dg-error "bit-field 'f' has invalid type" } */
} x;
return 0;
}