mirror of
https://github.com/github/codeql.git
synced 2026-03-29 11:48:16 +02:00
14 lines
197 B
Plaintext
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()
|
|
|
|
|
|
|