From 16b00da844c40cc76cee72088bd6dc49fa38d98c Mon Sep 17 00:00:00 2001 From: Martin Odersky Date: Fri, 19 May 2006 13:21:50 +0000 Subject: Fixed bug 601,602,603 --- test/files/run/bug601.scala | 8 ++++++++ test/files/run/bug603.scala | 33 +++++++++++++++++++++++++++++++++ 2 files changed, 41 insertions(+) create mode 100644 test/files/run/bug601.scala create mode 100644 test/files/run/bug603.scala (limited to 'test/files/run') diff --git a/test/files/run/bug601.scala b/test/files/run/bug601.scala new file mode 100644 index 0000000000..98b51ce97c --- /dev/null +++ b/test/files/run/bug601.scala @@ -0,0 +1,8 @@ +object Test +{ + private case object FooA + + def main(argv : Array[String]) : Unit = { + Console.println(FooA) + } +} diff --git a/test/files/run/bug603.scala b/test/files/run/bug603.scala new file mode 100644 index 0000000000..27cee562ce --- /dev/null +++ b/test/files/run/bug603.scala @@ -0,0 +1,33 @@ +object lazy { + class Susp[+A](lazyValue: => A) extends Function0[A] { + private var func: () => Any = () => lazyValue + private var value: Any = null + + override def apply() = { + if (func != null) { + value = func().asInstanceOf[A] + func = null + } + value.asInstanceOf[A] + } + + override def toString() = + if (func == null) "Susp(" + value + ")" + else "Susp(?)" + } + + def delay[A](value: => A) = new Susp[A](value) + implicit def force[A](s: Susp[A]): A = s() +} + +object lazy_test { + import lazy._ + + def main(args: Array[String]) = { + val s: Susp[Int] = delay { Console.println("evaluating..."); 3 } + Console.println("s = " + s) + Console.println("s() = " + s()) + Console.println("s = " + s) + Console.println("2 + s = " + (2 + s)) + } +} -- cgit v1.2.3