8c6337f3f6
Used EQ origin to detect. Added a test to check dynamic_var = "bar" case is not affected
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"
|
|
} |