Files
kotlin-fork/backend.native/tests/codegen/controlflow/break1.kt
T
2017-10-20 18:25:05 +03:00

12 lines
171 B
Kotlin

package codegen.controlflow.break1
import kotlin.test.*
@Test fun runTest() {
loop@ while (true) {
println("Body")
break
}
println("Done")
}