2d1abda9a1
Also includes minor test fix, related to KT-14900
9 lines
141 B
Kotlin
Vendored
9 lines
141 B
Kotlin
Vendored
// PROBLEM: none
|
|
|
|
fun test(n: Int) {
|
|
var a: String = ""
|
|
<caret>if (n == 1)
|
|
a = "one"
|
|
else if (n == 2)
|
|
a = "two"
|
|
} |