28c5dde875
#KT-7715 Fixed
5 lines
109 B
Kotlin
Vendored
5 lines
109 B
Kotlin
Vendored
// "Make variable immutable" "true"
|
|
fun foo(p: Int) {
|
|
<caret>var v: Int
|
|
if (p > 0) v = 1 else v = 2
|
|
} |