Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
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
;
}
};