5d3fe7547a
For type parameters of generic properties, `DeclarationDescriptor#getContainingDeclaration` must return the property descriptor instead of the accessor function descriptor. ^KT-57436 Fixed
10 lines
133 B
Kotlin
Vendored
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
|