mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
10 lines
160 B
Plaintext
10 lines
160 B
Plaintext
/**
|
|
* @name Test for yield breaks
|
|
*/
|
|
import csharp
|
|
|
|
from Method m, YieldBreakStmt yr
|
|
where yr.getEnclosingCallable() = m
|
|
and m.getName() = "Range"
|
|
select 1
|