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

10 lines
164 B
C#

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