summaryrefslogtreecommitdiff
path: root/test/files/jvm/future-termination.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/future-termination.scala')
-rw-r--r--test/files/jvm/future-termination.scala14
1 files changed, 14 insertions, 0 deletions
diff --git a/test/files/jvm/future-termination.scala b/test/files/jvm/future-termination.scala
new file mode 100644
index 0000000000..c448a88aa7
--- /dev/null
+++ b/test/files/jvm/future-termination.scala
@@ -0,0 +1,14 @@
+import scala.actors.Futures
+
+/* Test that unevaluated futures do not prevent program termination */
+
+object Test {
+ def main(args: Array[String]) {
+ val meaningOfLife = Futures.future {
+ Thread.sleep(5000) // pretend this is a harder problem than it is
+ println("I have the answer!")
+ 42
+ }
+ println("I can't wait that long, bye.")
+ }
+}