IDEA-209300 Split into 2 if's doesn't work when I'm staying on the last symbol of &&

This commit is contained in:
Tagir Valeev
2019-03-21 13:27:00 +07:00
parent 2d37171a79
commit 31298c2000
3 changed files with 4 additions and 4 deletions
@@ -1,6 +1,6 @@
class C {
void foo() {
if (a || b &<caret>& c) {
if (a || b &&<caret> c) {
call();
}
}