Files
codeql/csharp/ql/test/library-tests/expressions/ExprsUnchecked1.ql
2018-08-02 17:53:23 +01:00

13 lines
333 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