Files
kotlin/compiler/testData/codegen/box/controlStructures/inRangeConditionsInWhen.kt

9 lines
144 B
Kotlin
Vendored

operator fun Int.contains(i : Int) = true
fun box(): String {
when (1) {
in 2 -> return "OK"
else -> return "fail"
}
}