12 lines
137 B
Kotlin
Vendored
12 lines
137 B
Kotlin
Vendored
interface A {
|
|
fun test() = ok()
|
|
|
|
private companion object {
|
|
fun ok() = "OK"
|
|
}
|
|
}
|
|
|
|
class C : A
|
|
|
|
fun box() = C().test()
|