Files
kotlin-fork/idea/testData/intentions/moveToCompanion/implicitDispatchReceiver.kt
T
2016-04-26 13:59:07 +03:00

9 lines
128 B
Kotlin
Vendored

fun println(a: Any) {}
class InsertThis {
val v1 = 1
fun <caret>f() {
println(v1)
}
fun use() { f() }
}