Files
codeql/python/ql/test/library-tests/ControlFlow/ssa/phi-nodes/test3.py
2018-11-19 15:15:54 +00:00

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