2 // { dg-do compile { target c++11 } }
3 // { dg-options "-pedantic" }
7 constexpr operator int() const { return 0; }
10 int a[] = { [A()] = 0 }; // { dg-warning "does not allow C99 designated initializers" }
16 constexpr operator E() const { return E::e0; }
19 int b[] = { [B()] = 0 }; // { dg-warning "does not allow C99 designated initializers" }
21 enum class SE { se0 };
25 constexpr operator SE() const { return SE::se0; }
28 int c[] = { [C()] = 0 }; // { dg-error "14:C99 designator .C\\\(\\\). is not an integral constant-expression" }
29 // { dg-warning "does not allow C99 designated initializers" "" { target *-*-* } .-1 }