xref: /llvm-project/clang/test/CodeGen/Inputs/debug-info-slash.h (revision 75993812d5c1f269b781c34987748f2a792a579d)
1 template <typename... T>
f1()2 void f1() {}
a()3 void a() {
4   auto Lambda = [] {};
5   f1<decltype(Lambda)>();
6 }
7