Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
friend42.C
blob: 3b6ad5a413377fb41064bb3e9a37632eb7619e05 [
file
] [
log
] [
blame
]
// { dg-do compile }
template
<
class
T
>
void
foo
(
int
);
template
<
class
T
>
class
Q
{
friend
void
foo
<
T
>
(
int
=
3
);
// { dg-error "27:default arguments are not allowed in declaration of friend" }
};