mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
19 lines
344 B
C#
19 lines
344 B
C#
using System.Collections;
|
|
using System.Collections.Generic;
|
|
|
|
public class Test
|
|
{
|
|
public void M()
|
|
{
|
|
var h = new Hashtable();
|
|
h.Add(this, null); // BAD
|
|
var d = new Dictionary<Test, bool>();
|
|
d.Add(this, false); // BAD
|
|
}
|
|
|
|
public override bool Equals(object other)
|
|
{
|
|
return false;
|
|
}
|
|
}
|