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