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