Files
kotlin-fork/idea/testData/intentions/moveToCompanion/doNotQualifyThisLabel.kt
T
2016-09-12 21:03:18 +03:00

10 lines
133 B
Kotlin
Vendored

// WITH_RUNTIME
package foo
class InsertThis {
val v1 = 1
fun <caret>f() {
println(v1)
}
fun use() { f() }
}