blob: 012a3e55a300d503e7c2cb07eb79c8fc5f4bc8c5 [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 "error: bit-field 's' has invalid type" } */
int *p : 2; /* { dg-error "error: bit-field 'p' has invalid type" } */
int (*f)(float) : 3; /* { dg-error "error: bit-field 'f' has invalid type" } */
} x;
return 0;
}