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

13 lines
219 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.getAnInitializer()) = 1
select s, s.getInitializer(0)