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

9 lines
190 B
Kotlin
Vendored

// PROBLEM: none
class Test {
override fun equals(other: Any?): Boolean {
val another = Test()
if (another.equals<caret>(other)) return true
return false
}
}