diff options
author | Damien George <damien.p.george@gmail.com> | 2018-09-15 16:06:58 +1000 |
---|---|---|
committer | Damien George <damien.p.george@gmail.com> | 2018-09-15 22:39:27 +1000 |
commit | a676b5acf6ee9c17926cf9786370d30a077d99c0 (patch) | |
tree | 0b585dccd74596c7050c16197da1887c2fc8f639 /tests/micropython/viper_error.py | |
parent | 43f1848bfa81aa3cb0acd1e34eece0a11aa130d0 (diff) |
py/emitnative: Support arbitrary number of arguments to viper functions.
Diffstat (limited to 'tests/micropython/viper_error.py')
-rw-r--r-- | tests/micropython/viper_error.py | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/tests/micropython/viper_error.py b/tests/micropython/viper_error.py index 847257285..ff32f5473 100644 --- a/tests/micropython/viper_error.py +++ b/tests/micropython/viper_error.py @@ -13,9 +13,6 @@ test("@micropython.viper\ndef f() -> 1: pass") # unknown type test("@micropython.viper\ndef f(x:unknown_type): pass") -# too many arguments -test("@micropython.viper\ndef f(a, b, c, d, e): pass") - # local used before type known test(""" @micropython.viper |