coreycerovsek (Corey Cerovsek)
- Login: coreycerovsek
- Registered on: 01/03/2018
- Last sign in: 06/26/2018
Issues
| open | closed | Total | |
|---|---|---|---|
| Assigned issues | 0 | 0 | 0 |
| Reported issues | 0 | 1 | 1 |
Activity
01/03/2018
-
09:01 PM Ruby Bug #14279 (Closed): Modifying splat argument causes segmentation fault
- Using Docker Ruby images ruby:2.2 through ruby:rc as of 2018-01-03, this little bit of code causes a segmentation fault:
~~~
class A
def x(*args)
args = 13
super
end
end
A.new.x
~~~
I'm not sure what the behavi...