Files
kotlin-fork/idea/testData/inspectionsLocal/recursiveEqualsCall/recursive.kt.after
T
2017-11-30 16:44:20 +03:00

6 lines
129 B
Plaintext
Vendored

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