summaryrefslogtreecommitdiff
path: root/test/prism/errors
diff options
context:
space:
mode:
authorydah <t.yudai92@gmail.com>2025-07-07 19:06:26 +0900
committerKevin Newton <kddnewton@gmail.com>2025-08-05 13:58:09 -0400
commit087190fcd21973eb34b600fa82e6567189f4bbd7 (patch)
treed597df686f275e815608064add06bef8236acd8a /test/prism/errors
parentf814a777550ee39865f8fe26d0061cba8b715509 (diff)
[ruby/prism] Improve error handling for missing parentheses after 'not' in command calls
https://github.com/ruby/prism/commit/d9151b8a82
Diffstat (limited to 'test/prism/errors')
-rw-r--r--test/prism/errors/command_calls_31.txt7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/prism/errors/command_calls_31.txt b/test/prism/errors/command_calls_31.txt
index 72d5fc588f..e662b25444 100644
--- a/test/prism/errors/command_calls_31.txt
+++ b/test/prism/errors/command_calls_31.txt
@@ -7,6 +7,11 @@ true || not true
^~~~ unexpected 'true', expecting end-of-input
true && not (true)
- ^ expected a `(` after `not`
+ ^ expected a `(` immediately after `not`
^ unexpected '(', expecting end-of-input
+true && not
+true
+^~~~ expected a `(` after `not`
+^~~~ unexpected 'true', expecting end-of-input
+