Commit 848b6027 authored by Stefan Behnel's avatar Stefan Behnel

add disabled test case that is not currently supported

parent 95c699d3
......@@ -171,6 +171,17 @@ def to_int_array_array_enumsize(x):
'''
'''
# FIXME: this isn't currently supported
def array_as_argument(int[2] x):
"""
>>> array_as_argument([1, 2])
(1, 2)
"""
return x[0], x[1]
'''
def to_int_array_slice(x):
"""
>>> to_int_array_slice([1, 2, 3])
......
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