Files
kotlin-fork/compiler/testData/ir/irText/declarations/kt35550.kt
T

7 lines
81 B
Kotlin
Vendored

interface I {
val <T> T.id: T
get() = this
}
class A(i: I) : I by i