1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/ruby/bug-11928.rb
naruse d3c05ae77c merge revision(s) 53514,53524: [Backport #11928]
* iseq.c (iseqw_mark): as wrapped iseq is isolated from the call
	  stack, it needs to take care of its parent and ancestors, so
	  that they do not become orphans.  [ruby-core:72620] [Bug #11928]

	* iseq.c (rb_iseq_mark): mark parent iseq to prevent dynamically
	  generated iseq by eval from GC.  [ruby-core:72620] [Bug #11928]


git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/branches/ruby_2_3@54405 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
2016-03-29 14:15:17 +00:00

14 lines
243 B
Ruby

class Segfault
at_exit { Segfault.new.segfault }
define_method 'segfault' do
n = 11928
v = nil
i = 0
while i < n
i += 1
v = (foo rescue $!).local_variables
end
assert_equal(%i[i n v], v.sort)
end
end