blob: f9bbc3532685511eea418d3f087ce4d62febdc7f [file] [log] [blame]
// PR c++/33461
// { dg-do compile { target c++11 } }
template<typename> struct A;
template<typename... T> struct A<T*...> // { dg-bogus "cannot expand" "" }
{
struct B;
};
A<void*> a; // { dg-bogus "incomplete type" "" }