mirror of
https://github.com/github/codeql.git
synced 2025-12-24 04:36:35 +01:00
13 lines
229 B
Plaintext
13 lines
229 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
|