8 lines
90 B
Kotlin
Vendored
8 lines
90 B
Kotlin
Vendored
interface I {
|
|
val foo: String
|
|
get() = "OK"
|
|
}
|
|
|
|
class A : I
|
|
|
|
fun box() = A().foo |