Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend20.C
blob: 496d52f5e7faefc58d3738313cceefab922e6e85 [
file
] [
log
] [
blame
]
template
<
class
T
>
struct
A
{
friend
void
bar
(
A
<
T
>
a
)
{}
};
void
bar
(
A
<int>
);
int
main
()
{
A
<int>
a
;
bar
(
a
);
}