Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/varnotnull/assignment.kt
T
2015-11-09 16:36:34 +03:00

10 lines
240 B
Kotlin
Vendored

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