Skip to content

Instantly share code, notes, and snippets.

@iwadon
Forked from anonymous/gist:12221
Created October 2, 2008 00:51
Show Gist options
  • Save iwadon/14245 to your computer and use it in GitHub Desktop.
Save iwadon/14245 to your computer and use it in GitHub Desktop.
class A
def x
c
end
end
class B < A
def c
100
end
end
p B.new.x # => 100
p A.new.x # => NameError: undefined local variable or method `c' for #<A:0x4ade4>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment