1 2 3 4 5 6
template <typename... T> void f1() {} void a() { auto Lambda = [] {}; f1<decltype(Lambda)>(); }