7 lines
69 B
Kotlin
Vendored
7 lines
69 B
Kotlin
Vendored
object A {
|
|
fun foo() = this
|
|
}
|
|
|
|
fun use() = A
|
|
fun bar() = A.foo()
|