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
reflect: canonicalize types returned by StructOf() and friends
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.brendan
/
template30.C
blob
87c95e15a013dcbcff92d975ed06c3cf216a9c61
1
// { dg-do assemble }
2
// GROUPS passed templates
3
4
template<class K, class V> class MapLS { };
5
class String {};
6
class X1 { };
7
class RefProto { };
8
template<class REP> class Ref { };
9
10
template <>
11
class MapLS<String, Ref<X1> >: public MapLS<String, RefProto> {
12
public:
13
~MapLS();
14
};
15
16
MapLS<String, Ref<X1> >::~MapLS() { }
17