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

9 lines
185 B
Kotlin
Vendored

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