Files
kotlin-fork/idea/testData/quickfix/expressions/removeUselessCastInParens.kt
T
2015-10-14 20:39:35 +03:00

8 lines
136 B
Kotlin
Vendored

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