FIR2IR: Adjust test data for updated overridden structure

This commit is contained in:
Denis.Zharkov
2021-02-17 17:56:18 +03:00
parent a750d9466e
commit 377a0aa237
203 changed files with 856 additions and 3799 deletions
@@ -1,39 +0,0 @@
open class Base {
constructor(x: Any) /* primary */ {
super/*Any*/()
/* <init>() */
}
val x: Any
field = x
get
}
object Host {
private constructor() /* primary */ {
super/*Any*/()
/* <init>() */
}
class Derived1 : Base {
constructor() /* primary */ {
super/*Base*/(x = Host)
/* <init>() */
}
}
class Derived2 : Base {
constructor() /* primary */ {
super/*Base*/(x = Host)
/* <init>() */
}
}
}