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
21 lines
426 B
Kotlin
21 lines
426 B
Kotlin
import kotlin.test.assertEquals
|
|
|
|
fun foo(x : String) : String {
|
|
return when (x) {
|
|
"abc", "cde" -> "abc_cde"
|
|
"efg", "ghi" -> "efg_ghi"
|
|
else -> "other"
|
|
}
|
|
}
|
|
|
|
fun box() : String {
|
|
assertEquals("abc_cde", foo("abc"))
|
|
assertEquals("abc_cde", foo("cde"))
|
|
assertEquals("efg_ghi", foo("efg"))
|
|
assertEquals("efg_ghi", foo("ghi"))
|
|
|
|
assertEquals("other", foo("xyz"))
|
|
|
|
return "OK"
|
|
}
|