Files
codeql/csharp/ql/test/query-tests/Likely Bugs/HashedButNoHash/HashedButNoHash.cs
2018-08-02 17:53:23 +01:00

21 lines
407 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;
}
}
// semmle-extractor-options: /r:System.Runtime.Extensions.dll