Sign in
pigweed
/
third_party
/
github
/
JetBrains
/
kotlin
/
9fc4d94d04f972782fee2dc5b3b25d052d88601a
/
.
/
compiler
/
testData
/
diagnostics
/
tests
/
nullabilityAndSmartCasts
/
kt2125.kt
blob: 77c63d16a7913e685fd2868d837f4386edcef830 [
file
]
// FIR_IDENTICAL
//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
<!>()
}