1 /* Test for various initializer warnings being suppressed by use of
2 designated initializers. */
4 /* { dg-do compile } */
5 /* { dg-options "-std=c99 -W -Wall -Wtraditional" } */
11 int b
; /* { dg-message "note: 'b' declared here" } */
27 char *f
; /* { dg-line multilevel_f } */
30 struct t T0
= { 1 }; /* { dg-warning "missing init" } */
32 struct t T1
= { .a
= 1 }; /* { dg-bogus "(missing|near) init" } */
34 union u U0
= { 1 }; /* { dg-warning "initialization of union" } */
35 union u U1
= { .i
= 1 }; /* { dg-bogus "initialization of union" } */
40 { .b
= 3 }, /* { dg-bogus "missing init" } */
41 { 4 }, /* { dg-warning "initialization of union" } */
42 { .n
= 9 }, /* { dg-bogus "initialization of union" } */
44 }; /* { dg-warning "missing init" } */
45 /* { dg-message "declared here" "near init" { target *-*-* } multilevel_f } */