summaryrefslogtreecommitdiff
path: root/tests/micropython/viper_error.py
diff options
context:
space:
mode:
authorDamien George <damien.p.george@gmail.com>2018-09-15 16:06:58 +1000
committerDamien George <damien.p.george@gmail.com>2018-09-15 22:39:27 +1000
commita676b5acf6ee9c17926cf9786370d30a077d99c0 (patch)
tree0b585dccd74596c7050c16197da1887c2fc8f639 /tests/micropython/viper_error.py
parent43f1848bfa81aa3cb0acd1e34eece0a11aa130d0 (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.py3
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