mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
12 lines
166 B
Plaintext
12 lines
166 B
Plaintext
/**
|
|
* @name Test for namespaces
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Namespace n
|
|
where
|
|
n.hasFullyQualifiedName("", "Empty") and
|
|
not exists(n.getATypeDeclaration())
|
|
select n
|