Skip to content

Instantly share code, notes, and snippets.

Created September 23, 2008 04:54
Show Gist options
  • Save anonymous/12221 to your computer and use it in GitHub Desktop.
Save anonymous/12221 to your computer and use it in GitHub Desktop.
class A
def x
self.class.const_get :C
end
end
class B < A
C = 100
end
p B.new.x # => 100
p A.new.x # => NameError: uninitialized constant A::C
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment