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

6 lines
129 B
Plaintext
Vendored

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