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

11 lines
206 B
Plaintext

/**
* @name Test for continues
*/
import csharp
from Method m, ContinueStmt s
where m.getName() = "MainContinue"
and s.getEnclosingCallable() = m
and s.getParent().(IfStmt).getThen() = s
select m, s