summaryrefslogtreecommitdiff
path: root/test/ruby
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby')
-rw-r--r--test/ruby/test_iseq.rb5
1 files changed, 5 insertions, 0 deletions
diff --git a/test/ruby/test_iseq.rb b/test/ruby/test_iseq.rb
index 19357a774d..2b3282d5fb 100644
--- a/test/ruby/test_iseq.rb
+++ b/test/ruby/test_iseq.rb
@@ -135,6 +135,11 @@ class TestISeq < Test::Unit::TestCase
assert_raise_with_message(Ractor::IsolationError, /`#{name}'/) do
Ractor.make_shareable(y)
end
+ obj = Object.new
+ def obj.foo(*) ->{super} end
+ assert_raise_with_message(Ractor::IsolationError, /hidden variable/) do
+ Ractor.make_shareable(obj.foo)
+ end
end
def test_disasm_encoding