mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
13 lines
191 B
Plaintext
13 lines
191 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
|