Sign in
android
/
platform
/
tools
/
idea
/
2250e7e055295bee73366d360d15ea0270573ef6
/
.
/
python
/
testData
/
inspections
/
PyUnboundLocalVariableInspection
/
DefinedInTryUsedAfter.py
blob: 415aef387c27bafb662d934ccaf34479c9152cd9 [
file
] [
log
] [
blame
]
def
f
():
try
:
result
=
bool
(
2
)
finally
:
pass
return
result
#pass