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

11 lines
206 B
Plaintext

/**
* @name Test for well-formed fors
*/
import csharp
from Method m, ForStmt s
where m.getName() = "MainFor"
and s.getEnclosingCallable() = m
and count(s.getAnUpdate()) = 1
select s, s.getUpdate(0)