mirror of
https://github.com/github/codeql.git
synced 2026-03-23 07:56:54 +01:00
11 lines
247 B
Plaintext
11 lines
247 B
Plaintext
/**
|
|
* @name Test for destructors
|
|
*/
|
|
import csharp
|
|
|
|
from Destructor c
|
|
where c.getDeclaringType().getName() = "Class"
|
|
and c.getDeclaringType().getNamespace().getQualifiedName() = "Constructors"
|
|
select c, c.getDeclaringType().getQualifiedName()
|
|
|