Files
kotlin-fork/compiler/testData/codegen/box/ranges/contains/kt20106.kt
T
2017-09-05 15:32:53 +03:00

7 lines
151 B
Kotlin
Vendored

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