blob: 16a0bc0be56c01710bd4952da9accea8d0f17187 [file] [log] [blame]
// "Swap If Statements" "false"
class A {
void m() {
if (someCondition) {
doSomeAction();
} e<caret>lse {
defaultAction();
}
}
}