21cdf9dd5b
#KT-20106 Fixed
7 lines
151 B
Kotlin
Vendored
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"
|
|
} |