Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend41.C
blob: 6d686019d9a2ab4c46669de93613a9068a8fc0c5 [
file
] [
log
] [
blame
]
// PR c++/26912
struct
Foo
{
template
<
class
T
>
int
func
()
const
;
};
class
Bar
{
friend
int
Foo
::
func
<int>
()
const
;
};