Sign in
gnu
/
gcc
/
ab810952eb7c061e37054ddd1dfe0aa033365131
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic43.C
blob: b2f1f8dc05adedcbf59d5033f5619d5dd9b30ad3 [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
template
<
typename
...
Args
>
int
f
(
const
Args
&...);
void
g
()
{
int
(*
fp
)(
const
int
&,
const
float
&)
=
&
f
;
}