aboutsummaryrefslogtreecommitdiff
path: root/tests/run/lazyVals.scala
blob: db91dbcd6ef2094f205dc3fcc0b3d7cfdc12cc9a (plain) (blame)
1
2
3
4
5
6
7
8
object Test {
 def foo = {
   lazy val s = 42 // needs LazyIntHolder
   s
  }

  def main(args: Array[String]): Unit = println(foo)
}