Files
kotlin/compiler/testData/codegen/bytecodeText/whenStringOptimization/nonInlinedConst.kt
Denis Zharkov 0efe28a12a Do not inline non-const vals
#KT-10425 Fixed
2016-02-05 17:43:55 +03:00

13 lines
202 B
Kotlin
Vendored

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