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

8 lines
116 B
Kotlin

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