Guest User

Untitled

a guest
Mar 13th, 2018
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.17 KB | None | 0 0
  1. class C
  2. def foo
  3. puts "foo"
  4. end
  5. end
  6.  
  7. module D
  8. def bar
  9. foo
  10. end
  11. end
  12.  
  13. class A < C
  14. include D
  15. end
  16.  
  17. class B < C
  18. include D
  19. end
  20.  
  21. A.new.bar
Add Comment
Please, Sign In to add comment