This project is closed and read-only.
Actions
Bug #3777
closedSEGV with profile.rb
Bug #3777:
SEGV with profile.rb
Status:
Closed
Assignee:
-
Description
=begin
Hi,
I had SEGV with no backtace
% cat /tmp/a.rb
require 'profile'
class A
include Enumerable
def each
[1,2,3].each {|x| yield x }
#yield 1
end
end
a = A.new
a.any? {
true
}
% ruby /tmp/a.rb
[BUG] Segmentation fault
ruby 1.9.3dev (2010-08-31 trunk 29154) [x86_64-darwin10.4.0]
-- control frame ----------¶
-- C level backtrace information -------------------------------------------
[NOTE]
You may have encountered a bug in the Ruby interpreter or extension libraries.
Bug reports are welcome.
For details: http://www.ruby-lang.org/bugreport.html
=end
Actions