brintos

brintos / llvm-project-archived public Read only

0
0
Text · 100 B · 9092f4a Raw
7 lines · c
1template <typename... T>2void f1() {}3void a() {4  auto Lambda = [] {};5  f1<decltype(Lambda)>();6}7