8 lines
109 B
Kotlin
8 lines
109 B
Kotlin
fun some(x : Any) {
|
|
when (x) {
|
|
is Number -> 0
|
|
else->1
|
|
}
|
|
}
|
|
|
|
// SET_FALSE: ALIGN_IN_COLUMNS_CASE_BRANCH |