1 // RUN: rm -rf %t.dir && mkdir -p %t.dir
2 // RUN: echo '[{"directory": "%/t.dir", "command": "clang -ftemplate-depth=100 -x c++ %/s", "file": "%/s"}]' > %t.dir/compile_commands.json
3 // RUN: not clangd --compile-commands-dir=%t.dir -check=%s 2>&1 | FileCheck -strict-whitespace %s
5 // CHECK: [template_recursion_depth_exceeded]
7 template <typename... T>
8 constexpr int f(T... args) {