mirror of
https://github.com/github/codeql.git
synced 2026-08-04 09:23:23 +02:00
11 lines
156 B
C#
11 lines
156 B
C#
public class Test
|
|
{
|
|
public bool M()
|
|
{
|
|
var x = new Test2();
|
|
return this.Equals(x); // $ Alert // BAD
|
|
}
|
|
}
|
|
|
|
public class Test2 { }
|