Files
kotlin-fork/compiler/testData/codegen/box/when/stringOptimization/duplicatingItemsSameHashCode.kt
T
2022-08-01 08:57:16 +00:00

27 lines
494 B
Kotlin
Vendored

// WITH_STDLIB
import kotlin.test.assertEquals
fun foo(x : String) : String {
assertEquals("abz]".hashCode(), "aby|".hashCode())
when (x) {
"abz]" -> return "abz"
"ghi" -> return "ghi"
"aby|" -> return "aby"
"abz]" -> return "fail"
}
return "other"
}
fun box() : String {
assertEquals("abz", foo("abz]"))
assertEquals("aby", foo("aby|"))
assertEquals("ghi", foo("ghi"))
assertEquals("other", foo("xyz"))
return "OK"
}