Actions
Bug #10695
closedSegmentation fault with *args and **kwargs
    Bug #10695:
    Segmentation 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 11 years ago
          Updated by nobu (Nobuyoshi Nakada) almost 11 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 11 years ago
          Updated by nobu (Nobuyoshi Nakada) almost 11 years ago
          
          
        
        
      
      - Status changed from Open to Closed
Actions