Files
kotlin-fork/compiler/testData/codegen/box/callableReference/function/classMemberFromCompanionObject.kt
T
Alexander Udalov 2f003bdcb5 Minor, add regression test
#KT-42527
2020-10-07 21:31:43 +02:00

10 lines
120 B
Kotlin
Vendored

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