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
Actions
Like0
Like0Like0