a7071ae7af
TODO some tests should fail because range of comparables (e.g., '"Alpha" .. "Omega"') is currently not implemented
7 lines
145 B
Kotlin
Vendored
7 lines
145 B
Kotlin
Vendored
// WITH_RUNTIME
|
|
|
|
fun box(): String = when {
|
|
0 in intArrayOf(1, 2, 3) -> "fail 1"
|
|
1 !in intArrayOf(1, 2, 3) -> "fail 2"
|
|
else -> "OK"
|
|
} |