Files
kotlin-fork/compiler/testData/codegen/box/callableReference/function/classMemberFromCompanionObject.kt
T
2021-10-08 07:24:41 +03:00

10 lines
120 B
Kotlin
Vendored

class C {
fun OK() {}
companion object {
val result = C::OK
}
}
fun box(): String = C.result.name