Files
kotlin-fork/idea/testData/quickfix/expressions/removeUselessCastInParens.kt
T

8 lines
138 B
Kotlin
Vendored

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