Files
kotlin-fork/compiler/testData/codegen/box/controlStructures/kt1742.kt
T
2018-06-09 19:15:38 +03:00

9 lines
137 B
Kotlin
Vendored

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