mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
11 lines
283 B
Plaintext
Generated
11 lines
283 B
Plaintext
Generated
// generated by codegen, do not edit
|
|
import codeql.rust.elements
|
|
import TestUtils
|
|
|
|
from MacroPat x, string hasMacroCall
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
if x.hasMacroCall() then hasMacroCall = "yes" else hasMacroCall = "no"
|
|
select x, "hasMacroCall:", hasMacroCall
|