c005fe613f
#KT-8444 Fixed
9 lines
148 B
Plaintext
Vendored
9 lines
148 B
Plaintext
Vendored
fun f(x : Int) {
|
|
val y = if (x < 0) 1 else {
|
|
val i = x - 1
|
|
when {
|
|
i < 1 -> 2
|
|
else -> 3
|
|
}
|
|
}
|
|
} |