mirror of
https://github.com/github/codeql.git
synced 2026-03-23 16:06:47 +01:00
13 lines
257 B
Plaintext
13 lines
257 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
|
|
|