9 lines
197 B
Kotlin
Vendored
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.
|
|
} |