b8fcdea673
So #KT-13702 Fixed
20 lines
264 B
HTML
20 lines
264 B
HTML
<html>
|
|
<body>
|
|
Reports recursive equals calls.
|
|
|
|
<p>
|
|
For example:
|
|
<code>
|
|
<pre>
|
|
class X {
|
|
override fun equals(other: Any?): Boolean {
|
|
if (this == other) return true // recursive equals call
|
|
return false
|
|
}
|
|
}
|
|
</pre>
|
|
</code>
|
|
</p>
|
|
|
|
</body>
|
|
</html> |