Files
kotlin/compiler/testData/codegen/box/when/stringOptimization/expression.kt
2016-11-16 19:50:10 +03:00

23 lines
443 B
Kotlin
Vendored

// WITH_RUNTIME
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"
}