summaryrefslogtreecommitdiff
path: root/tests/errors/posonly5.pyx
diff options
context:
space:
mode:
Diffstat (limited to 'tests/errors/posonly5.pyx')
-rw-r--r--tests/errors/posonly5.pyx11
1 files changed, 11 insertions, 0 deletions
diff --git a/tests/errors/posonly5.pyx b/tests/errors/posonly5.pyx
new file mode 100644
index 000000000..9e359226a
--- /dev/null
+++ b/tests/errors/posonly5.pyx
@@ -0,0 +1,11 @@
+# mode: error
+# tag: posonly
+
+def test_multiple_seps(a,/,b,/):
+ pass
+
+_ERRORS = u"""
+4:29: Expected ')', found '/'
+"""
+
+