Files
kotlin-fork/idea/testData/quickfix/createFromUsage/createVariable/localVariable/beforePositionNextToUsage.kt
T
2015-03-11 23:33:54 +03:00

8 lines
124 B
Kotlin

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