blob: c531af9bd27bc0438e1119117ba4b4cb212e4118 [file] [log] [blame]
// { dg-do compile { target c++11 } }
struct A { A(); A(int); };
template <class... T> struct C: T...
{
using A::A;
};
C<A> c1(42);