Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
template
/
defarg14.C
blob: 352ccc41508fcc0a2334ae89d7a0ca1b701b96b2 [
file
] [
log
] [
blame
]
// PR c++/46129
// The default argument for A<int>::B::operator() should not be required
template
<
class
T
>
struct
A
{
struct
B
{
void
operator
()
(
const
T
&
d_
=
f
(
T
())
)
{
}
};
};
int
main
()
{
A
<int>
::
B b
;
}