1 // PR c++/54521
2 
3 struct X
4 {
XX5   X(int) {}
XX6   explicit X(X const &) {}
7 };
8 
main()9 int main()
10 {
11   X x = 1;
12 }
13