Bug 1879449 [wpt PR 44489] - [wptrunner] Add `infrastructure/expected-fail/` test...
[gecko.git] / tools / clang-tidy / test / readability-misleading-indentation.cpp
blob8b2301017087a640b4fd0e4101366746494653fc
1 void f()
5 void foo() {
6 if (1)
7 if (0)
8 f();
9 else
10 f();
13 void foo2() {
14 constexpr bool a = true;
15 if constexpr (a) {
16 f();
17 } else {
18 f();