9 lines
89 B
Kotlin
Vendored
9 lines
89 B
Kotlin
Vendored
interface I {
|
|
fun foo() = "OK"
|
|
}
|
|
|
|
interface J : I
|
|
|
|
class A : J
|
|
|
|
fun box() = A().foo() |