Guest User

Untitled

a guest
Apr 23rd, 2018
85
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. module InstanceMethods
  2. def const_lookup
  3. A
  4. end
  5. end
  6.  
  7.  
  8. class Consts
  9. A = "Hello World"
  10. include InstanceMethods
  11. end
  12.  
  13. c = Consts.new
  14. c.const_lookup
  15.  
  16. rmulliga@rtmlap:~/bs$ ruby test.rb
  17. test.rb:3:in `const_lookup': uninitialized constant InstanceMethods::A (NameError)
  18. from test.rb:14
Add Comment
Please, Sign In to add comment