Ruby - Inheritance
Identify the problem in this Ruby code snippet:
module M
def hello
'Hi'
end
end
class A
include M
end
class B < A
include M
end