// PR c++/68309 // { dg-do compile { target c++11 } } template void f(Ts...); template T g(T); template void print(Ts... args) { [&] { f(g(args)...); }(); } int main() { print(5.2); }