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

9 lines
197 B
Kotlin
Vendored

fun get(): Any {
return ""
}
fun foo(): Int {
var c: Any = get()
(c as String).length
return <!DEBUG_INFO_SMARTCAST!>c<!>.length // Previous line should make as unnecessary here.
}