Actions
Bug #10695
closedSegmentation fault with *args and **kwargs
Description
The following will raise a Segmentation fault:
def foo(*args, **kwargs)
puts "args: #{args}"
puts "kwargs: #{kwargs}"
end
foo('foo' => 'bar')
Segmentation fault in here.
Actions
Like0
Like0Like0