blob: c56c6c4f11cf17287bbd52146f0044ad122e3612 [file] [log] [blame]
def bar(f_new, x_new):
try:
x_new = f_new()
except Exception:
pass
return x_new
def foo(f):
x = 1
x = bar(f, x)
return x