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
/
template13.C
blob
ea81202c2dc23fb4524da055928b787e617cc4a5
1
// { dg-do assemble }
2
// GROUPS passed templates
3
template<class T>
4
class ListS {
5
public:
6
class Vix {
7
public:
8
Vix();
9
};
10
};
11
12
template<class T>
13
ListS<T>::Vix::Vix()
14
{ }
15