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

15 lines
227 B
Plaintext
Vendored

// WITH_RUNTIME
package foo
class InsertThis {
val v1 = 1
fun use() {
Companion.f(this)
}
companion object {
fun f(insertThis: InsertThis) {
println(insertThis.v1)
}
}
}