Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/varnotnull/assignment.kt
T
2021-05-25 13:28:27 +03:00

11 lines
223 B
Kotlin
Vendored

fun foo() {
var v: String? = null
v<!UNSAFE_CALL!>.<!>length
v = "abc"
<!DEBUG_INFO_SMARTCAST!>v<!>.length
v = null
v<!UNSAFE_CALL!>.<!>length
v = "abc"
<!DEBUG_INFO_SMARTCAST!>v<!>.length
}