-
-
Save sarahzrf/9adb925c41e3ff20be0562df1cd87d64 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
module Consts | |
Val = 3 | |
end | |
module Mod | |
class Foo | |
include Consts | |
module Bar | |
def baz | |
p Module.nesting | |
p ::Mod::Foo::Val | |
p Val | |
end | |
end | |
end | |
end | |
class Mod::Foo | |
include Bar | |
end | |
puts Mod::Foo.new.baz | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment