Files
codeql/rust/ql/test/extractor-tests/generated/MacroExpr/MacroExpr.ql
Arthur Baars db06ad2ac3 Rust: codegen
2024-09-20 15:51:03 +02:00

11 lines
284 B
Plaintext
Generated

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