Dead
[official-gcc.git] / gomp-20050608-branch / gcc / testsuite / g++.dg / template / spec7.C
blob18d3c90c45e9a0f8ef30e408dcb9e00bddd0db55
1 // { dg-do compile }
3 // PR c++/6440: Specialization of member class template.
5 template<class T> struct A
7   template<class U> struct B {};
8 }; 
10 template<> template<class U>
11 struct A<int>::B
13   void f();
14   template <class V> void g(V);
17 template<> template<> template <class V> void A<int>::B<char>::g(V)
21 A<int>::B<char> b;
23 int h()
25   b.f();
26   b.g(0);