Add inspection for equals which is called recursively within itself
So #KT-13702 Fixed
This commit is contained in:
committed by
Mikhail Glukhikh
parent
bd348911af
commit
b8fcdea673
@@ -0,0 +1,6 @@
|
||||
class Test {
|
||||
override fun equals(other: Any?): Boolean {
|
||||
if (this === other) return true
|
||||
return false
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user