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

8 lines
98 B
Kotlin
Vendored

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