summaryrefslogtreecommitdiff
path: root/test/files/run/lazy-leaks.scala
Commit message (Collapse)AuthorAgeFilesLines
* Lazy fields null out fields that are used only ...Iulian Dragos2009-09-281-0/+18
Lazy fields null out fields that are used only in their initializer. When the lazy value is forced, it will null out all private fields that are used only by the current lazy value. This should reduce memory leaks, see #720