mirror of
https://github.com/github/codeql.git
synced 2026-03-29 11:48:16 +02:00
12 lines
148 B
Plaintext
12 lines
148 B
Plaintext
/**
|
|
* @name Test for dos
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method m, DoStmt s
|
|
where
|
|
m.getName() = "MainDo" and
|
|
s.getEnclosingCallable() = m
|
|
select m, s
|