23491afde2
#KT-11483 Fixed
15 lines
227 B
Plaintext
Vendored
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)
|
|
}
|
|
}
|
|
} |