Files
codeql/rust/ql/test/extractor-tests/generated/AsmLabel/AsmLabel.ql
2025-05-30 11:51:35 +02:00

11 lines
283 B
Plaintext
Generated

// generated by codegen, do not edit
import codeql.rust.elements
import TestUtils
from AsmLabel x, string hasBlockExpr
where
toBeTested(x) and
not x.isUnknown() and
if x.hasBlockExpr() then hasBlockExpr = "yes" else hasBlockExpr = "no"
select x, "hasBlockExpr:", hasBlockExpr