Files
codeql/csharp/ql/test/library-tests/generics/Generics15.ql
2018-12-20 10:19:59 +01:00

13 lines
241 B
Plaintext

/**
* @name Test for generics
*/
import csharp
from ConstructedDelegateType d
where
d.hasName("GenericDelegate<String>") and
d.getTypeArgument(0) instanceof StringType and
d.getParameter(0).getType() instanceof StringType
select d