Files
kotlin/compiler/testData/codegen/box/callableReference/bound/objectReceiver.kt
2018-08-09 14:22:50 +03:00

5 lines
71 B
Kotlin
Vendored

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