FIR: Fix diagnostics test data after safe-call refactoring

^KT-38444 In Progress
This commit is contained in:
Denis Zharkov
2020-06-01 16:06:12 +03:00
parent 723b275d99
commit 55a4c40970
8 changed files with 16 additions and 16 deletions
@@ -10,7 +10,7 @@ val s: String = "test"
// FILE: test.kt
fun ff() {
val a = Test?.FOO
val b = foo?.s
System?.out.println(a + b)
}
val a = Test?.<!UNRESOLVED_REFERENCE!>FOO<!>
val b = foo?.<!UNRESOLVED_REFERENCE!>s<!>
System?.<!UNRESOLVED_REFERENCE!>out<!>.<!UNRESOLVED_REFERENCE!>println<!>(a + b)
}