Skip to content

Instantly share code, notes, and snippets.

@stormbrew
Created June 28, 2011 21:10
Show Gist options
  • Save stormbrew/1052215 to your computer and use it in GitHub Desktop.
Save stormbrew/1052215 to your computer and use it in GitHub Desktop.
class Z
end
class B
puts self, Z # => "B, Z"
end
class A
class Z; end
class ::B
puts self, Z # => guess?
end
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment