IR: slightly fix kotlin-like dumping of super qualifiers

This commit is contained in:
Mikhail Glukhikh
2022-06-15 12:04:59 +02:00
committed by Space
parent b0a6508d4b
commit 8ae47d4c4d
35 changed files with 95 additions and 68 deletions
@@ -10,7 +10,7 @@ class Derived : Base {
}
fun getValue(): Int {
return <this>super.#value
return <this>(super<Base>).#value
}
fun setValue(value: Int) {
@@ -18,3 +18,4 @@ class Derived : Base {
}
}