Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/variables/assignment.kt
T
2015-10-14 20:39:35 +03:00

10 lines
236 B
Kotlin
Vendored

fun foo() {
var v: Any = 42
v.<!UNRESOLVED_REFERENCE!>length<!>()
v = "abc"
<!DEBUG_INFO_SMARTCAST!>v<!>.length
v = 42
v.<!UNRESOLVED_REFERENCE!>length<!>()
v = "abc"
<!DEBUG_INFO_SMARTCAST!>v<!>.length
}