Files
tubestation/tools/clang-tidy/test/readability-misleading-indentation.cpp

11 lines
75 B
C++

void f()
{
}
void foo() {
if (1)
if (0)
f();
else
f();
}