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
Revert "PR 117048: simplify-rtx: Simplify (X << C1) [+,^] (X >> C2) into ROTATE"
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
t23.C
blob
2e6488af12827350cb6ab7b09e686f0b54830a75
1
// { dg-do assemble }
2
3
template <class T> class temp1
4
{
5
public:
6
T tvar;
7
};
8
9
10
template <class T2> class temp2
11
{
12
public :
13
temp1<T2> t1var;
14
};
15
16
17
temp1<int> temp1var;
18
temp2<int> temp2var;