mirror of
https://github.com/github/codeql.git
synced 2026-02-28 12:53:49 +01:00
11 lines
171 B
Plaintext
11 lines
171 B
Plaintext
/**
|
|
* @name Test for labeled block statement
|
|
*/
|
|
import csharp
|
|
|
|
from LabeledStmt stmt
|
|
where stmt.getLabel() = "block"
|
|
and stmt.getStmt() instanceof BlockStmt
|
|
select 1
|
|
|