[FIR] Introduce & use FirDelegatedMemberScope

This commit is contained in:
Mikhail Glukhikh
2020-08-26 16:06:17 +03:00
parent f0af930288
commit 5384ccf02f
5 changed files with 142 additions and 10 deletions
@@ -7,6 +7,6 @@ open class B(private val a: A) : A by a
class C(a: A) : B(a) {
override fun foo() {
// Should be resolved to delegated B.foo (no error)
super.<!ABSTRACT_SUPER_CALL!>foo<!>()
super.foo()
}
}