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

11 lines
188 B
Plaintext

/**
* @name Test for continues
*/
import csharp
from Method m, GotoLabelStmt s
where m.getName() = "MainGoto"
and s.getLabel() = "loop"
and s.getEnclosingCallable() = m
select m, s