blob: 48e95a0b1b67d0f775c8f8be3edbc3314ab61b4f [file] [log] [blame]
// { dg-do compile { target c++11 } }
// { dg-options "-g" }
struct A
{
template <class... Ts> A(Ts...);
};
struct B: A
{
using A::A;
};
B b1(42);
B b2(1.0, 42, (void*)0);