71a5e09a0b
#KT-6422 Fixed
8 lines
116 B
Kotlin
8 lines
116 B
Kotlin
// "Remove cast" "true"
|
|
fun test(x: Any): String? {
|
|
if (x is String) {
|
|
return x
|
|
}
|
|
return null
|
|
}
|