Files
kotlin/compiler/testData/codegen/box/callableReference/bound/objectReceiver.kt
2016-11-28 16:33:58 +03:00

5 lines
71 B
Kotlin
Vendored

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