summaryrefslogtreecommitdiff
path: root/test/files/run/t5552.scala
blob: 5b717f9e1397bdf86397d630014fa924faf7189a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
class C[@specialized(Int) A](a:A) {
  lazy val b = {println(s"lazy: $a"); (a, a)} // there should only be two instances of "lazy" in the output
  def c = b
}
object Test {
  def main(args:Array[String]) {
    val cInt = new C(3)
    println(cInt.c)
    println(cInt.c)
    val cFloat = new C(3.0)
    println(cFloat.c)
    println(cFloat.c)
  }
}