Files
codeql/python/ql/test/library-tests/variables/scopes/free.ql
2022-09-06 10:11:37 +02:00

9 lines
168 B
Plaintext

import python
from LocalVariable v, Scope inner
where
v.escapes() and
inner = v.getAnAccess().getScope() and
inner != v.getScope()
select v, v.getScope(), inner