8 lines
125 B
Plaintext
Vendored
8 lines
125 B
Plaintext
Vendored
// "Remove useless cast" "true"
|
|
fun test(x: Any): Int {
|
|
if (x is String) {
|
|
return x.length
|
|
}
|
|
return -1
|
|
}
|