blob: 241546de1f11a8d64066dddb6ac4216e3f88e4cc [file] [log] [blame]
// "Remove useless cast" "true"
fun test(x: Any): String? {
if (x is String) {
return x <caret>as String
}
return null
}