From 64af689e6659ab170826508f37720ee6e54386fa Mon Sep 17 00:00:00 2001 From: Paul Phillips Date: Tue, 10 Feb 2009 23:46:39 +0000 Subject: moved most of the passing tests from pending to... moved most of the passing tests from pending to files ; reunited inner.scala with inner.check --- test/pending/jvm/receiveWithinZero.scala | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 test/pending/jvm/receiveWithinZero.scala (limited to 'test/pending/jvm/receiveWithinZero.scala') diff --git a/test/pending/jvm/receiveWithinZero.scala b/test/pending/jvm/receiveWithinZero.scala deleted file mode 100644 index 315dd9c86a..0000000000 --- a/test/pending/jvm/receiveWithinZero.scala +++ /dev/null @@ -1,18 +0,0 @@ -import scala.actors.{Actor, TIMEOUT} - -class A extends Actor { - def act() = receiveWithin(0) { - case TIMEOUT => - println("TIMEOUT") - reply('ack) - act() - case x => println(x) - } -} - -object Test { - def main(args: Array[String]): Unit = { - val a = new A - a.start() - } -} -- cgit v1.2.3