aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/init/explicit1.C
blob: f376df2364830f60df67c7e6d666ee1267b67893 (plain)
1
2
3
4
5
6
7
8
9
// PR c++/60417

struct A { explicit A(int = 0); };
struct B { A a; };

int main()
{
  B b = {};
}