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
/
template2.C
blob
cb1d674ea825d7155cc412751ce2391f3683ea7c
1
// { dg-do assemble }
2
// GROUPS passed templates
3
template <class Q>
4
class Conc {
5
public:
6
static int body();
7
};
8
9
template <class Q>
10
int Conc<Q>::body() {return 0;}
11
12
int main () {
13
Conc<int> s2;
14
}