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
Merge from mainline.
[official-gcc.git]
/
gcc
/
testsuite
/
g++.dg
/
template
/
lookup5.C
blob
022202a7158c3d4e35fc3bc060957714d1a2cc94
1
// PR c++/13925
2
3
namespace N {
4
template <class T> void f(T);
5
6
namespace M {
7
class A {
8
friend void f<int>(int);
9
};
10
}
11
12
template <class T> void f(T) {}
13
template <> void f<int>(int )
14
{
15
f<long>(0);
16
}
17
}