Files
kotlin-fork/idea/testData/quickfix/expressions/removeUselessCastInNestedParens.kt
T
2021-05-28 18:21:31 +03:00

7 lines
147 B
Kotlin
Vendored

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