fxposter (Pavel Forkert)
- Login: fxposter
- Email: fxposter@gmail.com
- Registered on: 01/10/2014
- Last sign in: 12/25/2015
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/10/2014
-
10:28 PM Ruby Bug #9393 (Rejected): Strange behavior of DelegateClass + loop + method_missing
- Having the following class in Ruby 2.1:
```
require 'delegate'
class A < DelegateClass(Hash)
def a
loop do
::Kernel.p 'A'
break
end
end
end
```
After calling `A.new({}).a` the output is "A".
H...