Skip to content

Instantly share code, notes, and snippets.

@butchmarshall
Created January 2, 2016 03:42
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save butchmarshall/acc9ab872e8f4488b531 to your computer and use it in GitHub Desktop.
Save butchmarshall/acc9ab872e8f4488b531 to your computer and use it in GitHub Desktop.
ruby: TypeError: superclass mismatch for class MyClass
class InheritMe
end
module A
class MyClass
VERSION = "0.0.1"
end
end
module A
class MyClass < InheritMe
end
end
# Generates error TypeError: superclass mismatch for class MyClass
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment