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

9 lines
206 B
Kotlin
Vendored

// IGNORE_BACKEND_FIR: JVM_IR
// 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"
}