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
/
ttp47.C
blob
268ce877be45aa6c0d2b48a595782d262c07c1dd
1
// { dg-do run }
2
template <template<class,class> class TT, class T> void f(T)
3
{
4
}
5
6
template <template<class> class TT, class T> void f(T)
7
{
8
}
9
10
template <class T> class C {};
11
template <class T,class U> class D {};
12
13
int main()
14
{
15
f<C>(1);
16
f<D>(1);
17
}