blob: 83f7873005f4a06ae62966d1ab50d934451981e1 [file] [log] [blame]
def fill(f):
return lambda: f('test')
@fill
def test(x):
return x
test()