split if: actually forbid splitting when different operations are on the left of binary expr (IDEA-64877)

This commit is contained in:
anna
2011-02-02 18:07:59 +01:00
parent 8e60ee9036
commit 9aea03d01b
3 changed files with 14 additions and 1 deletions
@@ -0,0 +1,7 @@
class C {
void foo() {
if (a || b &<caret>& c) {
call();
}
}
}