JVM_IR: repair super calls to methods of Any

This commit is contained in:
Georgy Bronnikov
2020-04-14 21:10:23 +03:00
parent 4d1b5b84f8
commit 611c4fe052
4 changed files with 23 additions and 1 deletions
@@ -0,0 +1,9 @@
interface A
abstract class Base: A
class Derived : Base() {
override fun toString() = super.toString()
}
// 1 INVOKESPECIAL Base.toString