5abb6bc7a5
#KT-24556 Fixed
8 lines
135 B
Plaintext
Vendored
8 lines
135 B
Plaintext
Vendored
// "Remove branch" "true"
|
|
fun test(x: Int): String {
|
|
return when (x) {
|
|
1 -> "1"
|
|
2 -> "2"
|
|
else -> ""
|
|
}
|
|
} |