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.
Updated by nobu (Nobuyoshi Nakada) almost 10 years ago
- Is duplicate of Bug #10685: Segfault from keyword rest arg when coercing an object that defines to_hash added
Updated by nobu (Nobuyoshi Nakada) almost 10 years ago
- Status changed from Open to Closed
Actions
Like0
Like0Like0