Reviewers: a.sidorin, a_sidorin Reviewed By: a_sidorin Subscribers: martong, cfe-commits Differential Revision: https://reviews.llvm.org/D51142 llvm-svn: 340627
12 lines
147 B
C++
12 lines
147 B
C++
template <typename... T>
|
|
void sink(T... a);
|
|
|
|
template <typename... T>
|
|
void packfuncT(T... a) {
|
|
sink(a...);
|
|
}
|
|
|
|
void f() {
|
|
packfuncT(1, 2, 3);
|
|
}
|