mirror of
https://github.com/github/codeql.git
synced 2026-03-23 07:56:54 +01:00
15 lines
233 B
Plaintext
15 lines
233 B
Plaintext
import csharp
|
|
|
|
from UnboundGenericInterface ugi, TypeParameter tp, string s
|
|
where
|
|
ugi.fromSource()
|
|
and
|
|
ugi.getATypeParameter() = tp
|
|
and
|
|
(
|
|
tp.isOut() and s = "out"
|
|
or
|
|
tp.isIn() and s = "in"
|
|
)
|
|
select ugi, tp, s
|