summaryrefslogtreecommitdiff
path: root/test/ruby/test_proc.rb
diff options
context:
space:
mode:
authorNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-29 17:34:09 +0900
committerNobuyoshi Nakada <nobu@ruby-lang.org>2021-10-29 18:53:57 +0900
commitec2e04c90d96541502c9b96e66900b4bb01676bb (patch)
treecbc6b0989ab43d53af72396f9801610bdf33847e /test/ruby/test_proc.rb
parent0ad57158c7fb2892094c6a3b0dc306ba0a8a3735 (diff)
Preserve the encoding of message from outer local variables
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/5053
Diffstat (limited to 'test/ruby/test_proc.rb')
-rw-r--r--test/ruby/test_proc.rb6
1 files changed, 6 insertions, 0 deletions
diff --git a/test/ruby/test_proc.rb b/test/ruby/test_proc.rb
index 1f87085f9f..51872e49be 100644
--- a/test/ruby/test_proc.rb
+++ b/test/ruby/test_proc.rb
@@ -1611,6 +1611,12 @@ class TestProc < Test::Unit::TestCase
Proc.new{yield}.isolate
end
+
+ name = "\u{2603 26a1}"
+ assert_raise_with_message(ArgumentError, /\(#{name}\)/) do
+ eval("#{name} = :#{name}; Proc.new {p #{name}}").isolate
+ end
+
# binding
:a.tap{|a|