blob: 4c37c56df6fc06d16f85919b6bd439c9ba81d7b4 [file] [log] [blame]
// "Remove useless cast" "true"
fun test(x: Any): String? {
if (x is String) {
return x
}
return null
}