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

12 lines
278 B
Plaintext

/**
* @name Test for well-formed foreachs
*/
import csharp
from Method m, ForeachStmt s
where m.getName() = "MainForeach"
and s.getEnclosingCallable() = m
and s.getVariable().getName() = "s"
and s.getVariable().getType() instanceof StringType
select s, s.getVariable()