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