Commit 297f652d authored by Stefan Behnel's avatar Stefan Behnel

test case for ticket #654

parent d2d8e141
order = []
cdef int f():
order.append(1)
return 1
def g():
order.append(2)
return 2
cdef call(int x, object o):
return x, o
def test():
"""
>>> order
[]
>>> test()
(1, 2)
>>> order
[1, 2]
"""
return call(f(), g())
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