blob: 228e8ec6609130ae0b01c83969e515d0f075c713 [file] [log] [blame]
// { dg-do compile { target c++11 } }
struct A
{
A(int, ...); // { dg-message "declared here" }
};
struct B: A
{
using A::A; // { dg-warning "ellipsis" }
};
B b1(42);
B b2(42, 1.0); // { dg-error "no match" }