[mlir][sparse] implement non-permutation MapRef encoding (#69406)
[llvm-project.git] / clang-tools-extra / clangd / test / infinite-instantiation.test
blob85a1b656f49086c7d463be50fdd2af808a0506cf
1 // RUN: cp %s %t.cpp
2 // RUN: not clangd -check=%t.cpp 2>&1 | FileCheck -strict-whitespace %s
4 // CHECK: [template_recursion_depth_exceeded]
6 template <typename... T>
7 constexpr int f(T... args) {
8   return f(0, args...);
11 int main() {
12   auto i = f();