Project

General

Profile

Bug #21694

Updated by byroot (Jean Boussier) about 7 hours ago

Initially reported on Reddit by easydwh https://old.reddit.com/r/ruby/comments/1ozhupr/is_a_ruby_segmentation_fault_a_bug_if_you_are/ 

 Repro: 

 ```ruby 
 class BasicObject 
   def basic_call_no_super 
     super 
   end 
 end 

 "test".basic_call_no_super 
 ``` 

 Pull Request: https://github.com/ruby/ruby/pull/15221

Back