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

14 lines
259 B
Plaintext

/**
* @name Test for cast expressions
*/
import csharp
from Method m, CastExpr e
where
m.hasName("MainAccesses") and
e.getEnclosingCallable() = m and
e.getExpr().(ULongLiteral).getValue() = "4" and
e.getTargetType() instanceof IntType
select m, e