mirror of
https://github.com/github/codeql.git
synced 2026-04-29 10:45:15 +02:00
11 lines
188 B
Plaintext
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
|