mirror of
https://github.com/github/codeql.git
synced 2026-03-22 15:36:48 +01:00
10 lines
171 B
Plaintext
10 lines
171 B
Plaintext
import cpp
|
|
|
|
from VariableAccess a, BlockExpr b
|
|
where a.getEnclosingFunction() = b.getFunction()
|
|
select b,
|
|
a,
|
|
a.getTarget(),
|
|
a.getEnclosingFunction()
|
|
|