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