mirror of
https://github.com/github/codeql.git
synced 2025-12-17 17:23:36 +01:00
15 lines
268 B
Python
15 lines
268 B
Python
#Weird formatting is so that all uses and defn are on separate lines
|
|
#to assist checking test results.
|
|
|
|
def phi_in_try():
|
|
try:
|
|
try:
|
|
a_call()
|
|
finally:
|
|
l0 = 0
|
|
another_call()
|
|
except:
|
|
pass
|
|
return l0
|
|
|