blob: 75cde1daa46e329185bbe4016b89feed41052083 [file]
interface A {
val str: String
get() = "OK"
}
interface B : A
class Impl : B
fun box() = Impl().str