mirror of
https://github.com/github/codeql.git
synced 2026-03-29 11:48:16 +02:00
14 lines
258 B
Plaintext
14 lines
258 B
Plaintext
/**
|
|
* @name Test for destructors
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Destructor d, ValueOrRefType t
|
|
where
|
|
t = d.getDeclaringType() and
|
|
not t instanceof ConstructedGeneric and
|
|
not t instanceof UnboundGenericType and
|
|
d.getName() != "~" + t.getName()
|
|
select t, d
|