diff options
Diffstat (limited to 'tools/clang-tidy/test/readability-misleading-indentation.cpp')
-rw-r--r-- | tools/clang-tidy/test/readability-misleading-indentation.cpp | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tools/clang-tidy/test/readability-misleading-indentation.cpp b/tools/clang-tidy/test/readability-misleading-indentation.cpp new file mode 100644 index 0000000000..8b23010170 --- /dev/null +++ b/tools/clang-tidy/test/readability-misleading-indentation.cpp @@ -0,0 +1,20 @@ +void f() +{ +} + +void foo() { + if (1) + if (0) + f(); + else + f(); +} + +void foo2() { + constexpr bool a = true; + if constexpr (a) { + f(); + } else { + f(); + } +} |