Files
kotlin-fork/idea/testData/inspectionsLocal/recursiveEqualsCall/recursiveNot.kt
T

6 lines
135 B
Kotlin
Vendored

class Test {
override fun equals(other: Any?): Boolean {
if (<caret>this != other) return false
return true
}
}