Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/varnotnull/assignment.kt
T
2017-11-29 02:54:26 +03:00

11 lines
274 B
Kotlin
Vendored

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