mxhold (Max Holder)
- Login: mxhold
- Email: mxhold@gmail.com
- Registered on: 08/02/2014
- Last sign in: 10/17/2014
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
08/02/2014
-
06:39 PM Ruby Bug #10106 (Closed): Segfault when refining BasicObject
- This works:
~~~ruby
module RefinementBug
refine BasicObject do
def foo
1
end
end
end
using RefinementBug
puts Object.new.foo #=> 1
~~~
If you leave out the `using RefinementBug`, you would expect to ...