england (Roman Ivanilov)
- Login: england
- Email: englandpost@gmail.com
- Registered on: 02/01/2013
- Last sign in: 02/01/2013
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
02/01/2013
-
09:43 PM Ruby Bug #7768 (Closed): Inherited Array class missing
- Hello. I apologize if I missed something.
I found strange behavior in ruby 1.9:
```ruby
class Custom < Array; end
Custom.new(0){|i| i + 1}.uniq.class # => Array
Custom.new(2){|i| i + 1}.uniq.class # => Custom
```
while in 1...