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