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

14 lines
281 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()