summaryrefslogtreecommitdiff
path: root/test/files/jvm/reactWithinZero.scala
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2009-01-30 15:46:49 +0000
committerPhilipp Haller <hallerp@gmail.com>2009-01-30 15:46:49 +0000
commitc9365b9f14a7a91c9223e0b456b5ecbd46bf1e5a (patch)
treef62fb855c2f819b0b2ab7ffd542a301afe2442c0 /test/files/jvm/reactWithinZero.scala
parent8c52d2ef0a298780bc1c1c4f5465cc74017c9243 (diff)
downloadscala-c9365b9f14a7a91c9223e0b456b5ecbd46bf1e5a.tar.gz
scala-c9365b9f14a7a91c9223e0b456b5ecbd46bf1e5a.tar.bz2
scala-c9365b9f14a7a91c9223e0b456b5ecbd46bf1e5a.zip
Moved react/receiveWithinZero tests to pending ...
Moved react/receiveWithinZero tests to pending for now.
Diffstat (limited to 'test/files/jvm/reactWithinZero.scala')
-rw-r--r--test/files/jvm/reactWithinZero.scala18
1 files changed, 0 insertions, 18 deletions
diff --git a/test/files/jvm/reactWithinZero.scala b/test/files/jvm/reactWithinZero.scala
deleted file mode 100644
index 0786ce271d..0000000000
--- a/test/files/jvm/reactWithinZero.scala
+++ /dev/null
@@ -1,18 +0,0 @@
-import scala.actors.{Actor, TIMEOUT}
-
-class A extends Actor {
- def act() = reactWithin(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()
- }
-}