8835b0599a
#KT-11025 Fixed
13 lines
202 B
Kotlin
Vendored
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"
|
|
}
|
|
|
|
// 0 LOOKUPSWITCH
|