summaryrefslogtreecommitdiff
path: root/test/ruby/test_proc.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/ruby/test_proc.rb')
-rw-r--r--test/ruby/test_proc.rb8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/ruby/test_proc.rb b/test/ruby/test_proc.rb
index 5a108d3a0f..1a473ae43d 100644
--- a/test/ruby/test_proc.rb
+++ b/test/ruby/test_proc.rb
@@ -792,4 +792,12 @@ class TestProc < Test::Unit::TestCase
assert_equal([obj, nil], [a, b], '[ruby-core:24139]')
end
end
+
+ def test_curry_with_trace
+ bug3751 = '[ruby-core:31871]'
+ set_trace_func(proc {})
+ test_curry
+ ensure
+ set_trace_func(nil)
+ end
end