Actions
Bug #8965
closedSEGV when a refined method is undefined by undef
Description
The following code causes SEGV:
module Foo
refine Object do
def foo
puts "foo"
end
end
end
using Foo
class Object
undef foo
end
foo
I guess undef is not aware of refinements.
Actions
Like0
Like0