FIR: Fix test data after rewritten scope structure

Mostly, the semantics for statics/companions has been changed there
Fixed test data now is much closer to semantics of old FE
This commit is contained in:
Denis Zharkov
2020-05-07 13:06:30 +03:00
parent f64c12efac
commit f71a56e742
29 changed files with 77 additions and 362 deletions
@@ -26,7 +26,7 @@ class X: A {
val a_s: A_S = null!!
init {
A_S()
<!UNRESOLVED_REFERENCE!>A_S<!>()
A.A_S()
X.<!UNRESOLVED_REFERENCE!>A_S<!>()
}
@@ -35,7 +35,7 @@ class X: A {
val a_: A_S = null!!
init {
A_S()
<!UNRESOLVED_REFERENCE!>A_S<!>()
}
}
}
@@ -71,7 +71,7 @@ class Z: C() {
val b_s: B_S = null!!
init {
A_S()
<!UNRESOLVED_REFERENCE!>A_S<!>()
B_()
B_S()
}
@@ -82,7 +82,7 @@ class Z: C() {
val b_s: B_S = null!!
init {
A_S()
<!UNRESOLVED_REFERENCE!>A_S<!>()
B_()
B_S()
}