Bug #8607
Stack consistency error (sp: 16, bp: 17)
Status:
Closed
Priority:
Normal
Assignee:
-
Target version:
-
ruby -v:
ruby 2.0.0p195 (2013-05-14 revision 40734) [x86_64-linux]
Backport:
Description
The following code:
class A attr_accessor :foo end class B def initialize(parent) @parent = parent end def method_missing(method, *args, &block) @parent.send(method) end end B.new(A.new).foo = :bar
returns:
[BUG] Stack consistency error (sp: 16, bp: 17)
It has been reported on Stackoverflow (http://stackoverflow.com/questions/17513074/ruby-2-0-throws-bug-stack-consistency-error) by NicoSantangelo.
Updated by sawa (Tsuyoshi Sawada) over 7 years ago
Sorry, this bug is fixed in Ruby 2.0.0p247. Please dismiss this.
Updated by nagachika (Tomoyuki Chikanaga) over 7 years ago
- Status changed from Open to Closed
Thank you for your investigation.
I close this ticket.