madtrick (Farruco Sanjurjo)
- Login: madtrick
- Email: madtrick@gmail.com
- Registered on: 07/22/2011
- Last sign in: 07/26/2011
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
07/22/2011
-
09:24 PM Ruby Bug #5077 (Rejected): method_missing throws NoMemoryError after inheriting from BasicObject
- If a class inherits from BasicObject and then overwrites method_missing like this:
class A < BasicObject
def method_missing(*a)
puts "#{a}"
end
end
And we try it:
A.new.fooooo
The interpreter enters what looks ...