Files
codeql/rust/ql/test/extractor-tests/generated/Path/PathPat.ql
2024-11-21 11:13:06 +01:00

11 lines
252 B
Plaintext
Generated

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