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
/
redecl2.C
blob
d8837f6b9e45e17a2c29f40bce7bc3d217f70c9e
1
// { dg-do assemble }
2
3
struct A
4
{
5
template <class A>
6
void f(A) {}
7
};
8
9
void g()
10
{
11
A a;
12
a.f(3);
13
}
14