Files
kotlin/compiler/testData/codegen/bytecodeText/whenStringOptimization/nonInlinedConst.kt
2019-10-05 10:52:59 +02:00

15 lines
234 B
Kotlin
Vendored

// !LANGUAGE: -InlineConstVals
const val y = "cde"
fun foo(x : String) : String {
when (x) {
"abc", "${y}" -> return "abc_cde"
"e" + "fg", "ghi" -> return "efg_ghi"
}
return "other"
}
// 0 LOOKUPSWITCH