blob: d0038c16a142f6dbb3d7bda2efc3e11def0f32f9 [file] [log] [blame]
// { dg-do compile { target c++11 } }
struct B1 {
B1(int) { }
};
struct B2 {
B2(double) { }
};
struct D1 : B1 { // { dg-error "no match" }
using B1::B1; // implicitly declares D1(int)
int x;
};
void test() {
D1 d(6); // OK: d.x is not initialized
D1 e; // { dg-error "deleted" } D1 has no default constructor
}
struct D2 : B2 {
using B2::B2; // { dg-error "B1::B1" }
B1 b;
};
D2 f(1.0); // { dg-error "deleted" } B1 has no default constructor