bd38363077
To explicitly specify which test are failing
9 lines
158 B
Kotlin
Vendored
9 lines
158 B
Kotlin
Vendored
// "Remove useless cast" "true"
|
|
fun test(x: Any): String? {
|
|
if (x is String) {
|
|
return x <caret>as String
|
|
}
|
|
return null
|
|
}
|
|
|
|
/* IGNORE_FIR */ |