blob: f10dc5da4b5cb7b557d68496c9e582701d615130 [file] [log] [blame]
// "Remove Redundant 'else'" "true"
class a {
void foo() {
int a = 0;
int b = 0;
if (a != b) {
return;
}
a = b;
a++;
}
}