Files
kotlin/idea/testData/quickfix/createFromUsage/createVariable/localVariable/positionNextToUsage.kt

8 lines
124 B
Kotlin
Vendored

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