Files
kotlin-fork/j2k/testData/fileOrElement/for/forWithoutBody.java
T
Simon Ogorodnik 682a278cb8 Fix deleting of semicolon when it required to mark statement empty
#KT-18142 fixed
#KT-18141 fixed
2017-06-07 21:08:08 +03:00

6 lines
124 B
Java
Vendored

public class A {
public void aVoid() {
for (int i = 0; i < 10; i++);
System.out.println("Done");
}
}