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