mirror of
https://github.com/github/codeql.git
synced 2025-12-19 18:33:16 +01:00
12 lines
163 B
Plaintext
12 lines
163 B
Plaintext
/**
|
|
* @name Test for yield breaks
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method m, YieldBreakStmt yr
|
|
where
|
|
yr.getEnclosingCallable() = m and
|
|
m.getName() = "Range"
|
|
select 1
|