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

10 lines
153 B
C#

public class Test
{
public int Field;
public override bool Equals(object other)
{
return ((Test)other).Field == this.Field;
}
}