mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-08 15:53:19 +00:00
Generate TABLESWITCH/LOOKUPSWITCH bytecode operation for when operator by String constants
21 lines
393 B
Kotlin
21 lines
393 B
Kotlin
import kotlin.test.assertEquals
|
|
|
|
fun foo(x : String) : String {
|
|
when (x) {
|
|
"abc" -> return "abc"
|
|
"efg", "ghi", "abc" -> return "efg_ghi"
|
|
else -> return "other"
|
|
}
|
|
}
|
|
|
|
fun box() : String {
|
|
assertEquals("abc", foo("abc"))
|
|
assertEquals("efg_ghi", foo("efg"))
|
|
assertEquals("efg_ghi", foo("ghi"))
|
|
|
|
assertEquals("other", foo("xyz"))
|
|
|
|
return "OK"
|
|
}
|
|
|