Project

General

Profile

Actions

Bug #6654

closed

Module#prepend does not honor included modules

Added by rkh (Konstantin Haase) almost 12 years ago. Updated almost 12 years ago.

Status:
Closed
Assignee:
-
Target version:
ruby -v:
Backport:
[ruby-core:45914]

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

Actions #1

Updated by nobu (Nobuyoshi Nakada) almost 12 years ago

  • Tracker changed from Feature to Bug
Actions #2

Updated by nobu (Nobuyoshi Nakada) almost 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

Also available in: Atom PDF

Like0
Like0Like0