aboutsummaryrefslogblamecommitdiff
path: root/tests/pending/run/lazy-leaks.scala
blob: 6e5aa41f1e775348acffe9ed8767428693bcdd9e (plain) (tree)
1
2
3
4
5



                          
                                           












                                                                   
class Lazy(f: => Int) {
     lazy val get: Int = f
}

object Test extends dotty.runtime.LegacyApp
{
     val buffer = new scala.collection.mutable.ListBuffer[Lazy]

     // This test requires 4 Mb of RAM if Lazy is discarding thunks
     // It consumes 4 Gb of RAM if Lazy is not discarding thunks

     for (idx <- Iterator.range(0, 1024)) {
         val data = new Array[Int](1024*1024)
         val lz: Lazy = new Lazy(data.length)
         buffer += lz
         lz.get
     }
}