-
-
Notifications
You must be signed in to change notification settings - Fork 925
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[Truffle] Error in extending Module #2804
Comments
A smaller test case is module Module1
def self.extend_object(cl)
puts 'here'
end
end
module Module2
extend Module1
end The problem is that we implement There are loads of methods like this - |
TODO untag failing matrix specs once this is ready e2d3abd |
Singleton should work once we have module Example
class << Example
private
undef_method :extend_object
end
end Error:
|
@eregon please take a look since you know the module system better than most |
This should probably use |
Fixed. |
Also untagged matrix in e2c64c6, thanks for you work! |
@eregon 👍 thanks! |
Example Code
Error
Expected (ruby,jruby)
Example is used in stdlib matrix
The text was updated successfully, but these errors were encountered: