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

11 lines
253 B
Plaintext

/**
* @name Test for well-formed foreachs
*/
import csharp
from Method m
where m.getName() = "MainForeach"
and count(LocalVariable v | v.getVariableDeclExpr().getEnclosingCallable() = m
and v.getName() = "s") = 1
select m