1 2 3 4 5 6 7 8 9 10
// PR c++/60417 // { dg-options -pedantic } struct A { explicit A(int = 0); }; struct B { A a; }; int main() { B b = {}; // { dg-warning "explicit" "" { target c++11 } } }