3 // PR c++/6440: Specialization of member class template.
5 template<class T> struct A
7 template<class U> struct B {};
10 template<> template<class U>
14 template <class V> void g(V);
17 template<> template<> template <class V> void A<int>::B<char>::g(V)