Files
kotlin-fork/compiler/testData/ir/irText/declarations/kt35550.kt.txt
T
2024-02-16 10:19:38 +00:00

24 lines
356 B
Kotlin
Vendored

class A : I {
private /* final field */ val $$delegate_0: I = i
constructor(i: I) /* primary */ {
super/*Any*/()
/* <init>() */
}
override val <T : Any?> T.id: T
override get(): T {
return (<this>.#$$delegate_0, <this>).<get-id><T>()
}
}
interface I {
val <T : Any?> T.id: T
get(): T {
return <this>
}
}