Guest User

Untitled

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