blob: adeb02c93c5d0647e69434e7d2509e7adc265493 [file]
interface I {
val <T> T.id: T
get() = this
}
class A(i: I) : I by i
fun box(): String = with(A(object : I {})) { "OK".id }