mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-09 00:21:47 +00:00
Generate TABLESWITCH/LOOKUPSWITCH bytecode operation for when operator by String constants
25 lines
474 B
Kotlin
25 lines
474 B
Kotlin
import kotlin.test.assertEquals
|
|
|
|
fun foo(x : String) : String {
|
|
assert("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"
|
|
}
|