Files
codeql/csharp/ql/test/library-tests/generics/Generics27.ql
2018-12-20 10:19:59 +01:00

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