-
Notifications
You must be signed in to change notification settings - Fork 202
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Empty curly Unicode escape is not an error #856
Comments
Just like in #855 I can't reproduce your error: $ ruby -v bin/ruby-parse --32 -E -e '"\\u{}"'
ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-darwin19]
"\\u{}"
^~~~~~~ tSTRING "\\u{}" expr_end [0 <= cond] [0 <= cmdarg]
"\\u{}"
^ false "$eof" expr_end [0 <= cond] [0 <= cmdarg]
(str "\\u{}")
$ ruby -ve 'p "\\u{}"'
ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-darwin19]
"\\u{}" Please, try at least Ruby 2.7, older versions are not supported. |
Similar to #855
|
This is a real bug, too: $ /bin/cat test.rb
"\u{}"
$ ruby -v test.rb
ruby 3.0.0p0 (2020-12-25 revision 95aff21468) [x86_64-darwin19]
test.rb:1: warning: possibly useless use of a literal in void context
$ bin/ruby-parse --32 test.rb
test.rb:1:2: fatal: invalid Unicode escape
test.rb:1: "\u{}"
test.rb:1: ^~~~ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The text was updated successfully, but these errors were encountered: