diff options
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/basics/fun_callstar.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/basics/fun_callstar.py b/tests/basics/fun_callstar.py index 255563b26..2275d3d4f 100644 --- a/tests/basics/fun_callstar.py +++ b/tests/basics/fun_callstar.py @@ -14,6 +14,9 @@ foo(1, 2, *[100]) # Iterator foo(*range(3)) +# pos then iterator +foo(1, *range(2, 4)) + # method calls with *pos class A: |
