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