mirror of
https://github.com/github/codeql.git
synced 2025-12-20 10:46:30 +01:00
10 lines
258 B
Plaintext
10 lines
258 B
Plaintext
import csharp
|
|
|
|
from ConstructedType ct, UnboundGenericType ugt, UnboundGenericType sourceDecl
|
|
where
|
|
ct instanceof NestedType and
|
|
ugt = ct.getUnboundGeneric() and
|
|
sourceDecl = ct.getSourceDeclaration() and
|
|
ugt != sourceDecl
|
|
select ct, ugt, sourceDecl
|