/* Test diagnostics for duplicate field names involving anonymous struct or union as first field. PR 46889. *//* { dg-do compile } *//* { dg-options "" } */structfoo{union{struct{unsignedlongtime_stamp;};struct{int*page;};};int*page;/* { dg-error "duplicate member" } */};