Files
kotlin-fork/compiler/testData/ir/irText/declarations/kt35550.kt
T
Sergej Jaskiewicz 5d3fe7547a [IR] Fix mangling generic properties from IR-based descriptors
For type parameters of generic properties,
`DeclarationDescriptor#getContainingDeclaration` must return
the property descriptor instead of the accessor function descriptor.

^KT-57436 Fixed
2023-05-24 09:58:39 +00:00

10 lines
133 B
Kotlin
Vendored

// MUTE_SIGNATURE_COMPARISON_K2: ANY
// ^ KT-57754
interface I {
val <T> T.id: T
get() = this
}
class A(i: I) : I by i