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

14 lines
197 B
Plaintext

/**
* @name ExprsBasic7
* @kind table
*/
import cpp
from AssignExpr e
where e.getEnclosingFunction().hasName("create_foo")
and e.getLValue() instanceof FieldAccess
select e, e.getLValue()