aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/dc7.C
blob: e48741e07130ea9b0f198578ff4059a338e79fb7 (plain)
1
2
3
4
5
6
7
// PR c++/58255
// { dg-do compile { target c++11 } }

struct A {
  explicit A() { }
  A(int x) : A() { }
};