blob: ddc9cc503bcee6c2a23b824608f7e7f7a0ec7924 [file] [log] [blame]
// "Remove useless cast" "true"
fun test(x: Any): Int {
if (x is String) {
return (((x <caret>as String))).length
}
return -1
}