Skip to content

Instantly share code, notes, and snippets.

@dbussink
Forked from anonymous/gist:105737
Created May 3, 2009 09:34
Show Gist options
  • Save dbussink/105924 to your computer and use it in GitHub Desktop.
Save dbussink/105924 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
def self.new
puts "explicit contructor"
end
end
end
end
A::C.new
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment