mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
11 lines
145 B
C#
11 lines
145 B
C#
public class Test
|
|
{
|
|
public bool M()
|
|
{
|
|
var x = new Test2();
|
|
return this.Equals(x); // BAD
|
|
}
|
|
}
|
|
|
|
public class Test2 { }
|