Merge from mainline.
[official-gcc.git] / gcc / testsuite / gcc.dg / bitfld-13.c
blob012a3e55a300d503e7c2cb07eb79c8fc5f4bc8c5
1 /* Test invalid bit-field types: bug 18498. */
2 /* { dg-do compile } */
3 /* { dg-options "" } */
5 int
6 main(void)
8 struct X {
9 int s[20] : 1; /* { dg-error "error: bit-field 's' has invalid type" } */
10 int *p : 2; /* { dg-error "error: bit-field 'p' has invalid type" } */
11 int (*f)(float) : 3; /* { dg-error "error: bit-field 'f' has invalid type" } */
12 } x;
13 return 0;