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