Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/objectReceiver.kt
T
2021-09-20 19:08:22 +03:00

6 lines
72 B
Kotlin
Vendored

object Singleton {
fun ok() = "OK"
}
fun box() = (Singleton::ok)()