Files
codeql/csharp/ql/test/query-tests/Likely Bugs/RecursiveEquals/RecursiveEquals.cs
2026-07-07 14:09:48 +01:00

33 lines
698 B
C#

class RecursiveEquals
{
class Bad
{
private int i = 0;
public override bool Equals(object rhs)
{
if (rhs.GetType() != this.GetType()) return false;
return Equals(rhs); // $ Alert
}
public bool Equals(Bad rhs)
{
return (rhs != null && this.i == rhs.i);
}
}
class Good
{
private int i = 0;
public override bool Equals(object rhs)
{
if (rhs.GetType() != this.GetType()) return false;
return Equals((Good)rhs);
}
public bool Equals(Good rhs)
{
return (rhs != null && this.i == rhs.i);
}
}
}