Files
codeql/rust/ql/test/extractor-tests/generated/BoxPat/BoxPat.ql
Arthur Baars a9423f4bdb Rust: codegen
2024-09-20 15:50:59 +02:00

11 lines
245 B
Plaintext
Generated

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