aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/bitfld-13.c
blob: fcb381c86b6b601897db9f06c6e733676a122ff0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
/* 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;
}