Rebase.
[official-gcc.git] / gcc / testsuite / g++.dg / init / explicit1.C
blobf376df2364830f60df67c7e6d666ee1267b67893
1 // PR c++/60417
3 struct A { explicit A(int = 0); };
4 struct B { A a; };
6 int main()
8   B b = {};