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