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
/
lookup7.C
blob
0e05c5f752cae6c0c7de52e1e27958b88b4f2be2
1
class S;
2
3
template<class T>
4
int f(T, S);
5
6
class S {
7
template<class T>
8
friend int f(T t, S) { t; return 0; }
9
};