Files
codeql/rust/ql/test/extractor-tests/generated/CastExpr/CastExpr.ql
2024-09-16 13:39:55 +02:00

12 lines
283 B
Plaintext
Generated

// generated by codegen, do not edit
import codeql.rust.elements
import TestUtils
from CastExpr x, Expr getExpr, TypeRef getType
where
toBeTested(x) and
not x.isUnknown() and
getExpr = x.getExpr() and
getType = x.getType()
select x, "getExpr:", getExpr, "getType:", getType