summaryrefslogblamecommitdiff
path: root/test/files/run/lazy-leaks.scala
blob: e7073b5b607931d4d7d4dbd5410e9d398549cdf5 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18

















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

object Test extends Application
{
     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 (val idx <- Iterator.range(0, 1024)) {
         val data = new Array[Int](1024*1024)
         val lz: Lazy = new Lazy(data.length)
         buffer += lz
         lz.get
     }
}