mirror of
https://github.com/github/codeql.git
synced 2025-12-17 01:03:14 +01:00
12 lines
269 B
Plaintext
Generated
12 lines
269 B
Plaintext
Generated
// generated by codegen
|
|
import codeql.rust.elements
|
|
import TestUtils
|
|
|
|
from Function x, string getName, Expr getBody
|
|
where
|
|
toBeTested(x) and
|
|
not x.isUnknown() and
|
|
getName = x.getName() and
|
|
getBody = x.getBody()
|
|
select x, "getName:", getName, "getBody:", getBody
|