Files
kotlin-fork/compiler/testData/diagnostics/tests/smartCasts/variables/varAsUse.fir.kt
T

9 lines
170 B
Kotlin
Vendored

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