1 // PR c++/43765
2 // { dg-options "" }
3 
4 struct SomeType
5 {
6     int n;
7     const char *values[];
8 };
9 const char *temp[] = {"607", "612", 0};
10 
11 SomeType vals[] =
12     {
13         { 0, values : temp, },	 // { dg-error "either all initializer clauses should be designated or none of them should be" "" { target c++2a } }
14         0
15     };   // { dg-error "GNU-style designated initializer for an array|cannot convert" }
16 // (note the error above is on the wrong line)
17 	 // { dg-error "initialization of flexible array member in a nested context" "" { target *-*-* } .-2 }
18