mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
11 lines
206 B
Plaintext
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
|