mirror of
https://github.com/github/codeql.git
synced 2026-03-29 19:58:17 +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()
|
|
|