PR tree-optimization/81303
[official-gcc.git] / gcc / testsuite / gcc.dg / anon-struct-14.c
blob293ccc75a687567d3aa606a07020ffcc17b6533a
1 /* { dg-do compile } */
2 /* { dg-options "-fplan9-extensions" } */
4 /* When using Plan 9 extensions, a typedef can conflict with an
5 anonymous field. */
7 typedef struct { int a; } s1;
8 struct s2 { s1; int s1; }; /* { dg-error "duplicate" } */
9 int f(struct s2 *p) { return p->s1; } /* { dg-error "incompatible" } */