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

14 lines
311 B
Plaintext

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