Project

General

Profile

Bug #10686

Updated by nobu (Nobuyoshi Nakada) over 9 years ago

The following code appears to grow without bounds when running on MRI 2.2p0 (and grows *very* fast...hold on to your RAM): 

 ```ruby ``` 
 x = 0; loop { (x += 1).to_s.to_sym } 
 ``` 

 I asked ko1 about this on Twitter and he said it appears to be leaking strings somewhere.

Back