Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/varnotnull/varNull.kt
T
2015-11-25 18:26:15 +03:00

5 lines
164 B
Kotlin
Vendored

fun foo(): Int {
var s: String? = <!VARIABLE_WITH_REDUNDANT_INITIALIZER!>"abc"<!>
s = null
return <!DEBUG_INFO_CONSTANT!>s<!><!UNSAFE_CALL!>.<!>length
}