Files
kotlin-fork/backend.native/tests/external/codegen/box/callableReference/bound/companionObjectReceiver.kt
T
2017-03-13 15:31:46 +03:00

7 lines
97 B
Kotlin

class A {
companion object {
fun ok() = "OK"
}
}
fun box() = (A.Companion::ok)()