Skip to content

Instantly share code, notes, and snippets.

Created May 2, 2009 22:26
Show Gist options
  • Save anonymous/105737 to your computer and use it in GitHub Desktop.
Save anonymous/105737 to your computer and use it in GitHub Desktop.
module A
class C
def self.new
puts "yeah, wtf dude"
A::B::C.new
end
end
module B
class C < A::C
end
end
end
A::C.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment