sowcow (Alexander K.)
- Login: sowcow
- Email: xpyro@ya.ru
- Registered on: 01/23/2013
- Last sign in: 02/23/2020
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/23/2013
-
06:25 PM Ruby Bug #7732 (Rejected): refinements: super() in define_method => stack level too deep (SystemStackError)
- class Any
end
module Bug
refine Any do
define_method :to_s do
super()
end
end
end
using Bug
p Any.new.to_s # stack level too deep (SystemStackError)
# other example and workaround solution https://gist...