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