df86ff7115
So #KT-20492 Fixed
8 lines
140 B
Kotlin
Vendored
8 lines
140 B
Kotlin
Vendored
// IS_APPLICABLE: false
|
|
// WITH_RUNTIME
|
|
fun test(i: Int) {
|
|
<caret>when {
|
|
i == 1 -> println(1)
|
|
else -> println(2)
|
|
}
|
|
} |