858b454138
#KT-11994 In Progress
9 lines
125 B
Kotlin
Vendored
9 lines
125 B
Kotlin
Vendored
// FLOW: IN
|
|
|
|
fun test(m: Int, n: Int) {
|
|
val <caret>x = when (m) {
|
|
1 -> 1
|
|
2 -> n
|
|
else -> 0
|
|
}
|
|
} |