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
/
template18.C
blob
280db5d3a368c6794fb7cd0f964327b49ea9552b
1
// { dg-do assemble }
2
// GROUPS passed templates
3
template<class T> class X;
4
typedef X<int> IX;
5
6
template<class T>
7
class X {
8
public:
9
T x;
10
};
11
12
struct A {
13
IX c;
14
};