mirror of
https://github.com/github/codeql.git
synced 2026-05-03 04:39:29 +02:00
12 lines
283 B
Plaintext
Generated
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
|