mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
16 lines
247 B
C#
16 lines
247 B
C#
public class Test1
|
|
{
|
|
public override bool Equals(object other)
|
|
{
|
|
return other is Test1; // BAD
|
|
}
|
|
}
|
|
|
|
public sealed class Test2
|
|
{
|
|
public override bool Equals(object other)
|
|
{
|
|
return other is Test2; // GOOD
|
|
}
|
|
}
|