Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend8.C
blob: 21fd242f1836dd1679a5e849c808e0679b15ebb1 [
file
] [
log
] [
blame
]
template
<
int
N
>
struct
ivector
{
template
<
int
r
,
int
c
>
friend
void
mult_mv
();
};
template
struct
ivector
<
3
>;
template
<
int
r
,
int
c
>
void
mult_mv
()
{
c
;
}
void
get_local_point_pos
()
{
mult_mv
<
7
,
3
>
();
}