10 lines
177 B
Kotlin
Vendored
10 lines
177 B
Kotlin
Vendored
fun test(b: Any?): Int {
|
|
<expr>b is Number</expr>
|
|
if (b is String) {
|
|
return 54
|
|
} else if (b is Int) {
|
|
return 87
|
|
} else {
|
|
return 0
|
|
}
|
|
} |