summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--array.c2
-rw-r--r--test/ruby/test_array.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/array.c b/array.c
index 1d536284d5..dbcc09d22b 100644
--- a/array.c
+++ b/array.c
@@ -2738,7 +2738,7 @@ rb_ary_collect(VALUE ary)
RETURN_SIZED_ENUMERATOR(ary, 0, 0, ary_enum_length);
collect = rb_ary_new2(RARRAY_LEN(ary));
for (i = 0; i < RARRAY_LEN(ary); i++) {
- rb_ary_push(collect, rb_yield(RARRAY_AREF(ary, i)));
+ rb_ary_push(collect, rb_yield_force_blockarg(RARRAY_AREF(ary, i)));
}
return collect;
}
diff --git a/test/ruby/test_array.rb b/test/ruby/test_array.rb
index 1ff13c7736..6f4999386f 100644
--- a/test/ruby/test_array.rb
+++ b/test/ruby/test_array.rb
@@ -535,6 +535,8 @@ class TestArray < Test::Unit::TestCase
# Enumerable#collect without block returns an Enumerator.
#assert_equal([1, 2, 3], @cls[1, 2, 3].collect)
assert_kind_of Enumerator, @cls[1, 2, 3].collect
+
+ assert_equal([[1, 2, 3]], [[1, 2, 3]].collect(&->(a, b, c) {[a, b, c]}))
end
# also update map!