Files
codeql/csharp/ql/test/library-tests/comments/Generics.ql
2019-09-25 21:20:45 +02:00

13 lines
250 B
Plaintext

import csharp
from CommentBlock b, Element e
where
b.getElement() = e and
(
e instanceof ConstructedMethod or
e instanceof ConstructedClass or
e instanceof UnboundGenericClass or
e instanceof UnboundGenericMethod
)
select b, e