blob: 666b9a9c62a297c385e377225cc26bc984d18cd9 [file] [log] [blame]
/* { 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 " } */
}