Files
kotlin-fork/compiler/testData/diagnostics/tests/nullabilityAndSmartCasts/kt2125.fir.kt
T
2021-01-29 16:55:26 +03:00

13 lines
221 B
Kotlin
Vendored

//KT-2125 Inconsistent error message on UNSAFE_CALL
package e
fun main() {
val compareTo = 1
val s: String? = null
s<!UNSAFE_CALL!>.<!>compareTo("")
val bar = 2
s.<!UNRESOLVED_REFERENCE!>bar<!>()
}