Files
kotlin-fork/compiler/testData/codegen/box/objects/companionObjectAccess/kt27121_lv13.kt
T

12 lines
137 B
Kotlin
Vendored

interface A {
fun test() = ok()
private companion object {
fun ok() = "OK"
}
}
class C : A
fun box() = C().test()