[FIR] Properly create type ref for error type in various places

This commit is contained in:
Dmitriy Novozhilov
2023-02-01 16:40:04 +02:00
committed by Space Team
parent ad3ae0ff69
commit e9204521a9
25 changed files with 36 additions and 61 deletions
@@ -26,9 +26,9 @@ fun test(a_: a.b) {
a_.a_b()
val a_2 = a.<!UNRESOLVED_REFERENCE!>b<!>()
a_2.<!UNRESOLVED_REFERENCE!>a_b<!>()
a_2.<!UNRESOLVED_REFERENCE!>some_ab<!>()
a_2.<!UNRESOLVED_REFERENCE!>a_<!>()
a_2.a_b()
a_2.some_ab()
a_2.a_()
}
// FILE: c2.kt
@@ -55,4 +55,4 @@ fun test(_ab: a.b) {
val _ab2 = a.b()
_ab2.some_ab()
}
}