Files
kotlin-fork/backend.native/tests/external/codegen/box/controlStructures/kt1742.kt
T
2017-03-13 15:31:46 +03:00

8 lines
112 B
Kotlin

fun box(): String {
val x = 2
return when(x) {
in (1..3) -> "OK"
else -> "fail"
}
}