Actions
Bug #6654
closedModule#prepend does not honor included modules
Description
=begin
I really love that Module#prepend landed in core. I just had a play with it. I'm not sure if the following behavior is intentional:
module A
def a; end
end
module B
include A
def b; end
end
class C
prepend B
end
p C.new.respond_to? :b # true
p C.new.respond_to? :a # false (expected true)
=end
Updated by nobu (Nobuyoshi Nakada) over 12 years ago
- Tracker changed from Feature to Bug
Updated by nobu (Nobuyoshi Nakada) over 12 years ago
- Status changed from Open to Closed
- % Done changed from 0 to 100
This issue was solved with changeset r36237.
Konstantin, thank you for reporting this issue.
Your contribution to Ruby is greatly appreciated.
May Ruby be with you.
ancestor modules
- class.c (rb_prepend_module): ancestors of prepending module also
should be included. [ruby-core:45914][Bug #6654]
Actions
Like0
Like0Like0