Project

General

Profile

Actions

Bug #1729

closed

Returning ignores ensure section when inside lambda

Added by bugmenot (bugmenot bugmenot) almost 15 years ago. Updated about 13 years ago.

Status:
Closed
Target version:
-
ruby -v:
ruby 1.9.1p129 (2009-05-12 revision 23412) [i686-linux]
Backport:
[ruby-core:24146]

Description

=begin
The following code does not run the code inside the ensure section when run in Ruby 1.9.1. When run under Ruby 1.8.7, the ensure section is correctly run. Is there any reason for this change in behavior?

foo = lambda do
begin
return
ensure
puts "hi mom"
end
end

foo.call
=end

Actions

Also available in: Atom PDF

Like0
Like0Like0Like0