Files
tubestation/tools/clang-tidy/test/readability-redundant-control-flow.cpp

5 lines
46 B
C++

extern void g();
void f() {
g();
return;
}