mirror of
https://github.com/github/codeql.git
synced 2025-12-18 01:33:15 +01:00
14 lines
193 B
Plaintext
14 lines
193 B
Plaintext
/**
|
|
* @name ExprsBasic8
|
|
* @kind table
|
|
*/
|
|
import cpp
|
|
|
|
from AssignExpr e
|
|
where e.getEnclosingFunction().hasName("create_foo")
|
|
and e.getRValue() instanceof Literal
|
|
select e, e.getRValue()
|
|
|
|
|
|
|