Files
kotlin-fork/compiler/testData/codegen/box/ranges/contains/inIterable.kt
T
2019-11-19 11:00:09 +03:00

11 lines
225 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
val iterable: Iterable<Int> = listOf(1, 2, 3)
fun box(): String = when {
0 in iterable -> "fail 1"
1 !in iterable -> "fail 2"
else -> "OK"
}