PR middle-end/85602 - -Wsizeof-pointer-memaccess for strncat with size of source
[official-gcc.git] / gcc / testsuite / gcc.dg / bitfld-13.c
blobfcb381c86b6b601897db9f06c6e733676a122ff0
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 "bit-field 's' has invalid type" } */
10 int *p : 2; /* { dg-error "bit-field 'p' has invalid type" } */
11 int (*f)(float) : 3; /* { dg-error "bit-field 'f' has invalid type" } */
12 } x;
13 return 0;