blob: 8e8ff010ffec31e56a298760131c2b857dc88b64 [file] [log] [blame]
// { dg-options "-std=c++11" }
struct A
{
A(int, ...);
};
struct B: A
{
using A::A;
};
B b1(42);
B b2(42, 1.0); // { dg-error "no match" }