mirror of
https://github.com/github/codeql.git
synced 2026-02-26 11:53:42 +01:00
11 lines
155 B
Plaintext
11 lines
155 B
Plaintext
/**
|
|
* @name Test for namespaces
|
|
*/
|
|
import csharp
|
|
|
|
from Namespace n
|
|
where n.hasQualifiedName("Empty")
|
|
and not exists(n.getATypeDeclaration())
|
|
select n
|
|
|