blob: e7b3ac78e7949c3cc51b3c99f176c15a27c14c80 [file] [log] [blame]
// "Swap If Statements" "true"
class A {
void m() {
if (cond1) m1();
el<caret>se if (cond2) m2();
else if (cond3) m3();
}
}