repo.or.cz
/
official-gcc.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Dead
[official-gcc.git]
/
gomp-20050608-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
template27.C
blob
5357f1ca63c442f0178911b905d1c71bd555830f
1
// { dg-do assemble }
2
// GROUPS passed templates
3
template<class K, class V> class MapLS { };
4
class String {};
5
class X1 { };
6
class RefProto { };
7
template<class REP> class Ref { };
8
9
template <>
10
class MapLS<String, Ref<X1> >: public MapLS<String, RefProto> {
11
public:
12
~MapLS();
13
};
14
15
MapLS<String, Ref<X1> >::~MapLS() { }