fune/tools/clang-tidy/test/readability-else-after-return.cpp

10 lines
70 B
C++

void f() {
}
void foo() {
if (true)
return;
else
f();
}