Files
kotlin-fork/compiler/testData/codegen/box/ranges/contains/kt20106.kt
T

8 lines
176 B
Kotlin
Vendored

// KJS_WITH_FULL_RUNTIME
// WITH_RUNTIME
fun box(): String {
val strSet = setOf("a", "b")
val xx = "a" to ("a" in strSet)
return if (!xx.second) "fail" else "OK"
}