aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gcc.dg/two-types-8.c
blob: 0103b221bcd8f292c5fd21319ac9e293d6648767 (plain)
1
2
3
4
5
6
7
8
9
10
/* { dg-do compile } */
/* { dg-options "-std=gnu89" } // suppress default -pedantic-errors */

enum x { XYZ }
struct g { enum x a; }; /* { dg-error "expected ';', identifier or " "" } */

int f(struct g *x)
{
  return x->a == XYZ; /* { dg-bogus " has no member " "" } */
}