mirror of
https://github.com/github/codeql.git
synced 2026-03-23 07:56:54 +01:00
9 lines
256 B
Plaintext
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
|