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
Remove old autovect-branch by moving to "dead" directory.
[official-gcc.git]
/
old-autovect-branch
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
t14a.C
blob
c3a330a857ca2bdbb4fc2ed6c5951b79f6025f30
1
// { dg-do assemble }
2
3
class OBJECT
4
{
5
int a;
6
};
7
8
9
10
template <class T> class TESTA
11
{
12
public:
13
TESTA();
14
T foo(int i) {T t = 0; return t;}
15
};
16
17
18
19
void foo()
20
{
21
TESTA<OBJECT *> *foo;
22
23
foo = new TESTA<OBJECT *>;
24
}
25