Sign in
rust
/
rust-lang
/
llvm-project
/
2a2ea6b49e79325e0d10d33fac2b10ea3bebcc7c
/
.
/
clang
/
test
/
Import
/
pack-expansion-expr
/
Inputs
/
F.cpp
blob: 528451c855d85644a7d4124b8dc161ff18c94b09 [
file
] [
log
] [
blame
]
template
<
typename
...
T
>
void
sink
(
T
...
a
);
template
<
typename
...
T
>
void
packfuncT
(
T
...
a
)
{
sink
(
a
...);
}
void
f
()
{
packfuncT
(
1
,
2
,
3
);
}