Files
kotlin-fork/compiler/testData/codegen/box/callableReference/bound/companionObjectReceiver.kt
T
2018-06-28 12:26:41 +02:00

8 lines
123 B
Kotlin
Vendored

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