// RUN: %clang_cc1 -fsyntax-only -std=c++11 %s -verify void print(); template void print(T first, Ts... rest) { (void)first; print(rest...); } template void unsupported(Ts ...values) { auto unsup = [values] {}; // expected-error{{unexpanded function parameter pack capture is unsupported}} } template void implicit_capture(Ts ...values) { auto implicit = [&] { print(values...); }; implicit(); } template void do_print(Ts... values) { auto bycopy = [values...]() { print(values...); }; bycopy(); auto byref = [&values...]() { print(values...); }; byref(); auto bycopy2 = [=]() { print(values...); }; bycopy2(); auto byref2 = [&]() { print(values...); }; byref2(); } template void do_print(int, float, double); template void bogus_expansions(T x) { auto l1 = [x...] {}; // expected-error{{pack expansion does not contain any unexpanded parameter packs}} auto l2 = [Values...] {}; // expected-error{{'Values' in capture list does not name a variable}} } void g(int*, float*, double*); template void std_example(Args... args) { auto lm = [&, args...] { return g(args...); }; }; template void std_example(int*, float*, double*); template void variadic_lambda(Args... args) { auto lambda = [](Args... inner_args) { return g(inner_args...); }; lambda(args...); } template void variadic_lambda(int*, float*, double*);