blob: 5c87fbc07eeef4fe2b8f719c493d213e2679a9f6 [file] [log] [blame]
// "Swap If Statements" "true"
class A {
void m() {
if (cond2) m2();
else if (cond1) m1();
else if (cond3) m3();
}
}