blob: 50473f70214d34f2680a0e0fb8ee132e42af03a2 [file] [log] [blame]
// PR c++/89917
// { dg-do compile { target c++11 } }
struct A
{
A(...);
};
template<typename... T> struct B : T...
{
B() : T([]{})... {}
};
B<A> b;