Skip to content

Instantly share code, notes, and snippets.

@benphelps
Created November 2, 2012 14:28
Show Gist options
  • Save benphelps/80c396f7ab19e99b3ae6 to your computer and use it in GitHub Desktop.
Save benphelps/80c396f7ab19e99b3ae6 to your computer and use it in GitHub Desktop.
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