mirror of
https://github.com/github/codeql.git
synced 2026-08-04 17:33:18 +02:00
10 lines
164 B
C#
10 lines
164 B
C#
public class Test
|
|
{
|
|
public int Field;
|
|
|
|
public override bool Equals(object other)
|
|
{
|
|
return ((Test)other).Field == this.Field; // $ Alert
|
|
}
|
|
}
|