blob: f485346e71f56ec0b1e97dd11281eaeaa4d5ca83 [file] [log] [blame]
// PR c++/34060
// { dg-do compile { target c++11 } }
template <int> struct A
{
template <typename... > struct B {};
template <typename... T> struct B <int, T *> {}; // { dg-error "not expanded|T" }
};
A<0>::B<int>b;