mirror of
https://github.com/github/codeql.git
synced 2026-03-29 19:58:17 +02:00
12 lines
173 B
Plaintext
12 lines
173 B
Plaintext
/**
|
|
* @name Test for labeled block statement
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from LabeledStmt stmt
|
|
where
|
|
stmt.getLabel() = "block" and
|
|
stmt.getStmt() instanceof BlockStmt
|
|
select 1
|