Commit aee5548f authored by Stefan Behnel's avatar Stefan Behnel

add test case

parent fb88aa78
......@@ -75,3 +75,13 @@ def test_starred(a):
def inner(a, *args, **kwargs):
return a, args, kwargs
return inner(a)
def test_global_calls_still_work():
"""
>>> global_call_result
123
"""
return 123
global_call_result = test_global_calls_still_work()
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment