Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/localVariable/positionNextToUsage.kt.after
T

9 lines
133 B
Plaintext
Vendored

// "Create local variable 'foo'" "true"
fun test(n: Int) {
val i = 1
test(i)
test(i + 1)
val foo = 0
test(foo)
}