7 lines
123 B
Kotlin
7 lines
123 B
Kotlin
// "Replace with dot call" "true"
|
|
fun foo(a: Any) {
|
|
when (a) {
|
|
.equals(0) => true
|
|
else => false
|
|
}
|
|
} |