Files
kotlin-fork/j2k/testData/fileOrElement/foreachStatement/foreachWithoutBody.kt
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

8 lines
119 B
Kotlin
Vendored

class A {
fun aVoid() {
val array = IntArray(10)
for (i in array);
println("Done")
}
}