Files
kotlin-fork/js/js.translator/testData/box/simple/while2.kt
T
2016-09-29 12:00:43 +03:00

11 lines
101 B
Kotlin
Vendored

package foo
fun box(): String {
while (2 < 1) {
return "fail"
}
return "OK"
}