6 lines
135 B
Kotlin
Vendored
6 lines
135 B
Kotlin
Vendored
class Test {
|
|
override fun equals(other: Any?): Boolean {
|
|
if (<caret>this != other) return false
|
|
return true
|
|
}
|
|
} |