aaa873f227
#KT-11483 Fixed
14 lines
222 B
Plaintext
Vendored
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)
|
|
}
|
|
}
|
|
} |