pfultz2/cppcheck-rules

Catch duplicate assign and return

Opened this issue · 0 comments

void f() {
    auto x = g();
    return g();
}