3a90cb00c7
So, if a new component is registered in the compiler, it's not forgotten for the LL FIR This registers `FirDelegatedMembersFilter` for K/N modules and fixes KT-64528 ^KT-64528 fixed
15 lines
168 B
Kotlin
Vendored
15 lines
168 B
Kotlin
Vendored
// FIR_IDENTICAL
|
|
|
|
interface A {
|
|
val bar: String
|
|
}
|
|
|
|
interface B : A {
|
|
override val bar: String
|
|
}
|
|
|
|
abstract class C(a: A) : B, A by a
|
|
|
|
fun foo(c: C) {
|
|
c.bar
|
|
} |