Last active
December 2, 2017 01:58
-
-
Save rickhull/116cec58b9eba386e4f4e4405e93ef6a to your computer and use it in GitHub Desktop.
This file contains hidden or 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
# normal nesting | |
module Outer | |
X = 1 | |
Y = 2 | |
class C | |
X = Y | |
end | |
end | |
# alternative nesting | |
class Outer::D | |
X = Y | |
end | |
# Fail, can't find Y |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment