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
@@ -28,13 +28,14 @@ class CBoth : ILeft, IRight {
}
override fun foo() {
super.foo()
super.foo()
super<ILeft>.foo()
super<IRight>.foo()
}
override val bar: Int
override get(): Int {
return super.<get-bar>().plus(other = super.<get-bar>())
return super<ILeft>.<get-bar>().plus(other = super<IRight>.<get-bar>())
}
}