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
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
>
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