[MacRuby-devel] Segmentation fault for classes with multiple modules chained with super

2009-08-31 Thread Alexey Borzenkov
The following program causes segmentation fault for me with the latest macruby trunk: class A def somemethod puts "A::somemethod" end end module B def somemethod super puts "B::somemethod" end end module C def somemethod super puts "C::somemethod" end end class D

Re: [MacRuby-devel] Segmentation fault for classes with multiple modules chained with super

2009-08-31 Thread Alexey Borzenkov
On Tue, Sep 1, 2009 at 1:01 AM, Alexey Borzenkov wrote: > The following program causes segmentation fault for me with the latest > macruby trunk: > > class A >  def somemethod >    puts "A::somemethod" >  end > end > > module B >  def somemethod >  

Re: [MacRuby-devel] Segmentation fault for classes with multiple modules chained with super

2009-09-01 Thread Alexey Borzenkov
On Tue, Sep 1, 2009 at 1:12 AM, Laurent Sansonetti wrote: > Hi Alexey, > > Looks like you found a bug in super :) Would you be willing to contribute a > snippet for test_vm/dispatch.rb? This is where we keep all these weird cases > to make sure we won't forget to fix them. Here it is. Works on bot