-
-
Save benphelps/80c396f7ab19e99b3ae6 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 A | |
@b = B::B | |
# uninitialized constant A::B (NameError) | |
class A | |
def a | |
end | |
end | |
end | |
module B | |
class B | |
def b | |
end | |
end | |
end |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment