Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
parse
/
template17.C
blob: ade598d39e1b4cdf535a527f20a7a0ba9335bc99 [
file
] [
log
] [
blame
]
// PR c++/23841
template
<
int
I
>
struct
S
{
int
f
(
int
i
=
I
)
{
return
i
;
}
};
void
g
()
{
S
<(
int
)
0.
>
a2
;
}