2023-06-30 00:25:42 +08:00

14 lines
144 B
Python

def test1():
return "test1"
def test():
return test1
l = [test1]
assert l[0]() == "test1"
assert test()() == "test1"
print("PASS")