mirror of
https://github.com/github/codeql.git
synced 2026-05-04 05:05:12 +02: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()
|
|
|