[FIR2IR] Fix superQualifier in case of composed super type ref

This commit is contained in:
simon.ogorodnik
2020-05-27 20:50:16 +03:00
parent 8afbb4542b
commit 99b2a4745a
15 changed files with 244 additions and 14 deletions
@@ -0,0 +1,19 @@
open class Base {
open fun foo() {}
open val bar: String = ""
}
interface BaseI {
fun foo()
val bar: String
}
class Derived : Base(), BaseI {
override fun foo() {
super.foo()
}
override val bar: String
get() = super.bar
}