Files
kotlin-fork/idea/testData/quickfix/expressions/beforeRemoveUselessCastUnderSmartCast.kt
T
2015-03-24 16:40:58 +03:00

8 lines
133 B
Kotlin

// "Remove cast" "true"
fun test(x: Any): String? {
if (x is String) {
return x <caret>as String
}
return null
}