blob: e0de605f707f7da5e81c1d39d39507ab1e67304c [file] [log] [blame]
// PR c++/60383
template<int> struct A
{
template<typename> struct B
{
template<typename T> struct B<T*> {}; // { dg-error "specialization" }
};
};
A<0>::B<char*> b;