PR tree-optimization/83369 - Missing diagnostics during inlining
[official-gcc.git] / gcc / testsuite / gcc.dg / anon-struct-15.c
blobd9e786a8d86bc26fa8a57f89a8677f1e8c67fbf5
1 /* Test diagnostics for duplicate field names involving anonymous
2 struct or union as first field. PR 46889. */
3 /* { dg-do compile } */
4 /* { dg-options "" } */
6 struct foo {
7 union {
8 struct {
9 unsigned long time_stamp;
11 struct {
12 int *page;
15 int *page; /* { dg-error "duplicate member" } */