mirror of
https://github.com/github/codeql.git
synced 2025-12-20 02:44:30 +01:00
20 lines
273 B
Python
20 lines
273 B
Python
|
|
def f():
|
|
try:
|
|
call()
|
|
try:
|
|
nested()
|
|
except Exception:
|
|
return 1
|
|
except:
|
|
return 2
|
|
|
|
try:
|
|
call2()
|
|
except Exception:
|
|
return 2
|
|
|
|
try:
|
|
call3a()
|
|
finally:
|
|
call3b() |