1 // Test for C99-style designated array initializer 2 3 union U 4 { 5 long l; 6 const char *p; 7 }; 8 9 __extension__ U u = { .p = "" }; 10 11 __extension__ int i[4] = { [0] = 1, [1] = 2 }; 12 13 // Currently, except for unions, the C++ front end only supports 14 // designators that designate the element that would have been initialized 15 // anyway, except that C++2A designators can skip over some direct 16 // non-static data members. While that's true, make sure that we get 17 // a sorry rather than bad code. 18 19 struct A 20 { 21 int i; 22 int j; 23 }; 24 25 __extension__ A a = { .j = 1 }; 26 __extension__ A b = { .j = 2, .i = 1 }; // { dg-error "designator order for field 'A::i' does not match declaration order in 'A'" } 27 __extension__ int j[2] = { [1] = 1 }; // { dg-message "non-trivial" } 28