aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/g++.dg/cpp0x/dc4.C
blob: 634b5498de86957e21285e00ec972ce0fbbaff68 (plain)
1
2
3
4
5
6
7
// { dg-do compile }
// { dg-options "--std=c++98" }

struct X {
  X() {}
  X(int) : X() {} // { dg-warning "delegating constructors" }
};