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

13 lines
301 B
Plaintext

/**
* @name Test for delegate creations
*/
import csharp
from Method m, ImplicitDelegateCreation e
where m.hasName("MainDelegateAndMethodAccesses")
and e.getEnclosingCallable() = m
and e.getDelegateType().hasName("D")
and e.getArgument().(MethodAccess).getTarget().hasName("M2")
select m, e