mirror of
https://github.com/github/codeql.git
synced 2026-04-28 18:25:24 +02:00
12 lines
296 B
Plaintext
Generated
12 lines
296 B
Plaintext
Generated
// generated by codegen, do not edit
|
|
import codeql.rust.elements
|
|
import TestUtils
|
|
|
|
from RefPat x, Pat getPat, string isMut
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getPat = x.getPat() and
|
|
if x.isMut() then isMut = "yes" else isMut = "no"
|
|
select x, "getPat:", getPat, "isMut:", isMut
|