Files
codeql/csharp/ql/test/library-tests/expressions/ExprsUnchecked1.ql
2018-12-20 10:19:59 +01:00

14 lines
335 B
Plaintext

/**
* @name Test for unchecked expression
*/
import csharp
from Method m, UncheckedExpr e
where
m.hasName("MainChecked") and
e.getEnclosingCallable() = m and
e.getExpr().(AddExpr).getLeftOperand().(FieldAccess).getTarget().hasName("f") and
e.getExpr().(AddExpr).getRightOperand().(IntLiteral).getValue() = "20"
select m, e