Fix deleting of semicolon when it required to mark statement empty

#KT-18142 fixed
#KT-18141 fixed
This commit is contained in:
Simon Ogorodnik
2017-05-30 17:58:47 +03:00
parent 558203e2bb
commit 682a278cb8
11 changed files with 117 additions and 0 deletions
@@ -0,0 +1,8 @@
public class A {
public void aVoid() {
int i = 0;
while(i++ < 10);
System.out.println("Done");
}
}