Files
kotlin-fork/idea/testData/quickfix/variables/changeMutability/canBeVal/singleVariable.kt
T

5 lines
99 B
Kotlin
Vendored

// "Change to val" "true"
fun foo(p: Int) {
<caret>var v: Int
if (p > 0) v = 1 else v = 2
}