Generate explicit call to 'Any()' if no superclass found.

Generate call super-constructor calls as IrDelegatedConstructorCall.
This commit is contained in:
Dmitry Petrov
2016-09-05 09:20:09 +03:00
committed by Dmitry Petrov
parent 535ddd639f
commit 28b3ea27f3
41 changed files with 156 additions and 30 deletions
+12
View File
@@ -28,4 +28,16 @@ class Test4 {
init {
println("2")
}
}
class Test5 {
init {
println("1")
}
inner class TestInner {
init {
println("2")
}
}
}