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

14 lines
222 B
Plaintext
Vendored

fun println(a: Any) {}
class InsertThis {
val v1 = 1
fun use() {
Companion.f(this)
}
companion object {
fun f(insertThis: InsertThis) {
println(insertThis.v1)
}
}
}