Files
codeql/cpp/ql/test/library-tests/exprs_basic/ExprsBasic8.ql
2018-08-02 17:53:23 +01:00

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()