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.
Updated by shugo (Shugo Maeda) about 11 years ago
- Status changed from Assigned to Closed
I reported this issue to ruby-dev by accident, so refiled as #8966.
Actions
Like0
Like0