Sign in
gnu
/
gcc
/
19220ca6aa79921cc431e41f25986e16410c7a6a
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
lookup7.C
blob: 0e05c5f752cae6c0c7de52e1e27958b88b4f2be2 [
file
] [
log
] [
blame
]
class
S
;
template
<
class
T
>
int
f
(
T
,
S
);
class
S
{
template
<
class
T
>
friend
int
f
(
T t
,
S
)
{
t
;
return
0
;
}
};