Sign in
gnu
/
gcc
/
cd2fd5facb5e1882d3f338ed456ae9536f7c0593
/
.
/
gcc
/
testsuite
/
g++.dg
/
cpp0x
/
variadic-ex5.C
blob: 841562f8114cf6e87d55395ab6a2820452410d5a [
file
] [
log
] [
blame
]
// { dg-do compile { target c++11 } }
template
<
typename
...
Types
>
void
f
(
Types
...
values
);
void
g
()
{
f
<
int
*,
float
*>(
0
,
0
,
0
);
// Types is deduced to the sequence int*, float*, int
}