Fix deleting of semicolon when it required to mark statement empty
#KT-18142 fixed #KT-18141 fixed
This commit is contained in:
@@ -0,0 +1,8 @@
|
||||
public class A {
|
||||
public void aVoid() {
|
||||
int[] array = new int[10];
|
||||
|
||||
for (int i : array);
|
||||
System.out.println("Done");
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,8 @@
|
||||
class A {
|
||||
fun aVoid() {
|
||||
val array = IntArray(10)
|
||||
|
||||
for (i in array);
|
||||
println("Done")
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user