summaryrefslogtreecommitdiff
path: root/test/files/jvm/receiveWithinZero.scala
diff options
context:
space:
mode:
authorPhilipp Haller <hallerp@gmail.com>2009-01-03 15:11:03 +0000
committerPhilipp Haller <hallerp@gmail.com>2009-01-03 15:11:03 +0000
commitb1c9db8bfcd43cb6768c9427dffaf8abc8718489 (patch)
tree16476d7427a3f81758d4fd40c696bd8442902866 /test/files/jvm/receiveWithinZero.scala
parent1805207276e1ef370383735538121610b41934d3 (diff)
downloadscala-b1c9db8bfcd43cb6768c9427dffaf8abc8718489.tar.gz
scala-b1c9db8bfcd43cb6768c9427dffaf8abc8718489.tar.bz2
scala-b1c9db8bfcd43cb6768c9427dffaf8abc8718489.zip
Add tests for zero timeout in reactWithin and r...
Add tests for zero timeout in reactWithin and receiveWithin.
Diffstat (limited to 'test/files/jvm/receiveWithinZero.scala')
-rw-r--r--test/files/jvm/receiveWithinZero.scala18
1 files changed, 18 insertions, 0 deletions
diff --git a/test/files/jvm/receiveWithinZero.scala b/test/files/jvm/receiveWithinZero.scala
new file mode 100644
index 0000000000..315dd9c86a
--- /dev/null
+++ b/test/files/jvm/receiveWithinZero.scala
@@ -0,0 +1,18 @@
+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()
+ }
+}