summaryrefslogtreecommitdiff
path: root/test/prism/errors
diff options
context:
space:
mode:
Diffstat (limited to 'test/prism/errors')
-rw-r--r--test/prism/errors/command_calls_35.txt41
1 files changed, 0 insertions, 41 deletions
diff --git a/test/prism/errors/command_calls_35.txt b/test/prism/errors/command_calls_35.txt
deleted file mode 100644
index 9eb011cd86..0000000000
--- a/test/prism/errors/command_calls_35.txt
+++ /dev/null
@@ -1,41 +0,0 @@
-p(p a, x: b => value)
- ^~ unexpected '=>'; expected a `)` to close the arguments
- ^ unexpected ')', expecting end-of-input
- ^ unexpected ')', ignoring it
-
-p(p a, x: => value)
- ^~ unexpected '=>'; expected a `)` to close the arguments
- ^ unexpected ')', expecting end-of-input
- ^ unexpected ')', ignoring it
-
-p(p a, &block => value)
- ^~ unexpected '=>'; expected a `)` to close the arguments
- ^ unexpected ')', expecting end-of-input
- ^ unexpected ')', ignoring it
-
-p(p a, *args => value)
- ^~ unexpected '=>'; expected a `)` to close the arguments
- ^ unexpected ')', expecting end-of-input
- ^ unexpected ')', ignoring it
-
-p(p a, **kwargs => value)
- ^~ unexpected '=>'; expected a `)` to close the arguments
- ^ unexpected ')', expecting end-of-input
- ^ unexpected ')', ignoring it
-
-p p 1, &block => 2, &block
- ^~ unexpected '=>', expecting end-of-input
- ^~ unexpected '=>', ignoring it
- ^ unexpected ',', expecting end-of-input
- ^ unexpected ',', ignoring it
- ^ unexpected '&', ignoring it
-
-p p p 1 => 2 => 3 => 4
- ^~ unexpected '=>', expecting end-of-input
- ^~ unexpected '=>', ignoring it
-
-p[p a, x: b => value]
- ^ expected a matching `]`
- ^ unexpected ']', expecting end-of-input
- ^ unexpected ']', ignoring it
-