mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
12 lines
197 B
Plaintext
12 lines
197 B
Plaintext
/**
|
|
* @name Test for unchecked statements
|
|
*/
|
|
|
|
import csharp
|
|
|
|
from Method m, UncheckedStmt s
|
|
where
|
|
s.getEnclosingCallable() = m and
|
|
m.getName() = "MainCheckedUnchecked"
|
|
select s, s.getBlock()
|