diff options
Diffstat (limited to 'test/Import/pack-expansion-expr/Inputs/F.cpp')
-rw-r--r-- | test/Import/pack-expansion-expr/Inputs/F.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/Import/pack-expansion-expr/Inputs/F.cpp b/test/Import/pack-expansion-expr/Inputs/F.cpp new file mode 100644 index 0000000000000..528451c855d85 --- /dev/null +++ b/test/Import/pack-expansion-expr/Inputs/F.cpp @@ -0,0 +1,11 @@ +template <typename... T> +void sink(T... a); + +template <typename... T> +void packfuncT(T... a) { + sink(a...); +} + +void f() { + packfuncT(1, 2, 3); +} |