2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / testsuite / g++.old-deja / g++.brendan / template30.C
blob87c95e15a013dcbcff92d975ed06c3cf216a9c61
1 // { dg-do assemble  }
2 // GROUPS passed templates
4         template<class K, class V> class MapLS { };
5         class String {};
6         class X1 { };
7         class RefProto { };
8         template<class REP> class Ref { };
10         template <>        
11         class MapLS<String, Ref<X1> >: public MapLS<String, RefProto> {
12         public:
13             ~MapLS();
14         };
15         
16         MapLS<String, Ref<X1> >::~MapLS() { }