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
Skip analyzer strndup test on hppa*-*-hpux*
[official-gcc.git]
/
gcc
/
testsuite
/
g++.old-deja
/
g++.pt
/
memtemp66.C
blob
b6e8b6ff40566e53830199694a4c2a16487ac556
1
// { dg-do assemble }
2
3
template <class T>
4
struct S
5
{
6
template <class U>
7
void f(U u) { this->template f<>(3); }
8
};
9
10
11
void g()
12
{
13
S<char> s;
14
s.f(1.0);
15
}