IR: slightly fix kotlin-like dumping of super qualifiers
This commit is contained in:
@@ -29,12 +29,13 @@ class Derived : Base, BaseI {
|
||||
}
|
||||
|
||||
override fun foo() {
|
||||
super.foo()
|
||||
super<Base>.foo()
|
||||
}
|
||||
|
||||
override val bar: String
|
||||
override get(): String {
|
||||
return super.<get-bar>()
|
||||
return super<Base>.<get-bar>()
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user