Files
codeql/csharp/ql/test/query-tests/Likely Bugs/RecursiveEquals/RecursiveEquals.cs
2018-08-02 17:53:23 +01:00

33 lines
687 B
C#
Executable File

class RecursiveEquals
{
class Bad
{
private int i = 0;
public override bool Equals(object rhs)
{
if (rhs.GetType() != this.GetType()) return false;
return Equals(rhs);
}
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);
}
}
}