mirror of
https://github.com/github/codeql.git
synced 2025-12-17 09:13:20 +01:00
25 lines
173 B
Python
25 lines
173 B
Python
a = 1
|
|
b = 2
|
|
c = 3
|
|
a
|
|
b
|
|
# c is not used
|
|
d # not defined
|
|
|
|
try:
|
|
pass
|
|
except E1:
|
|
pass
|
|
|
|
try:
|
|
pass
|
|
except E2 as ex:
|
|
ex
|
|
|
|
with C1:
|
|
pass
|
|
|
|
with C2 as ctx:
|
|
ctx
|
|
|