10 lines
153 B
Plaintext
Vendored
10 lines
153 B
Plaintext
Vendored
// "Remove branch" "true"
|
|
fun test(x: Int): String {
|
|
return when (x) {
|
|
1 -> "1"
|
|
2 -> "2"
|
|
else -> ""
|
|
}
|
|
}
|
|
/* IGNORE_FIR */
|