FIR: Fix resolution scope of constructor delegation calls

This commit is contained in:
Denis.Zharkov
2021-10-04 15:07:49 +03:00
committed by teamcityserver
parent f038b575f1
commit 0a3c950e7f
12 changed files with 175 additions and 39 deletions
@@ -0,0 +1,11 @@
open class OtherClass {
fun foo(): String = "OK"
private class OtherClass<T> {}
}
class Derived : OtherClass()
fun box() = Derived().foo()