Files
codeql/csharp/ql/test/library-tests/generics/Generics15.ql
2018-08-02 17:53:23 +01:00

11 lines
238 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