mirror of
https://github.com/github/codeql.git
synced 2026-03-04 22:56:47 +01:00
12 lines
173 B
Plaintext
12 lines
173 B
Plaintext
/**
|
|
* @name Test for labeled statements
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method m, LabeledStmt s
|
|
where
|
|
m.getName() = "MainLabeled" and
|
|
s.getEnclosingCallable() = m
|
|
select m, s
|