repo.or.cz
/
llvm-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[mlir][sparse] implement non-permutation MapRef encoding (#69406)
[llvm-project.git]
/
clang-tools-extra
/
clangd
/
test
/
infinite-instantiation.test
blob
85a1b656f49086c7d463be50fdd2af808a0506cf
1
// RUN: cp %s %t.cpp
2
// RUN: not clangd -check=%t.cpp 2>&1 | FileCheck -strict-whitespace %s
3
4
// CHECK: [template_recursion_depth_exceeded]
5
6
template <typename... T>
7
constexpr int f(T... args) {
8
return f(0, args...);
9
}
10
11
int main() {
12
auto i = f();
13
}