Files
codeql/csharp/ql/test/library-tests/generics/Generics27.ql
2018-08-02 17:53:23 +01:00

9 lines
256 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