Files
kotlin-fork/j2k/testData/fileOrElement/for/forWithoutBody.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

6 lines
84 B
Kotlin
Vendored

class A {
fun aVoid() {
for (i in 0..9);
println("Done")
}
}