Support "recursive equals" for direct equals call (related to KT-13702)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
// PROBLEM: none
|
||||
|
||||
class Test {
|
||||
override fun equals(other: Any?): Boolean {
|
||||
val another = Test()
|
||||
if (another.equals<caret>(other)) return true
|
||||
return false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user