1 // PR c++/58255
2 // { dg-do compile { target c++11 } }
3 
4 struct A {
AA5   explicit A() { }
AA6   A(int x) : A() { }
7 };
8