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