summaryrefslogtreecommitdiff
path: root/test/files/jvm/t2359.scala
diff options
context:
space:
mode:
authorLukas Rytz <lukas.rytz@gmail.com>2015-04-21 14:49:58 +0200
committerLukas Rytz <lukas.rytz@gmail.com>2015-04-23 09:58:22 +0200
commit5b73e75943dd89dabda84b0fc3a651837c4a2113 (patch)
tree761bc0b25004c4edd7d89f500fac13b50d868406 /test/files/jvm/t2359.scala
parent9cba434b228e33f62e01460abe186fb56038a70e (diff)
downloadscala-5b73e75943dd89dabda84b0fc3a651837c4a2113.tar.gz
scala-5b73e75943dd89dabda84b0fc3a651837c4a2113.tar.bz2
scala-5b73e75943dd89dabda84b0fc3a651837c4a2113.zip
Remove scala.actors and the actors migration module dependency
Diffstat (limited to 'test/files/jvm/t2359.scala')
-rw-r--r--test/files/jvm/t2359.scala48
1 files changed, 0 insertions, 48 deletions
diff --git a/test/files/jvm/t2359.scala b/test/files/jvm/t2359.scala
deleted file mode 100644
index 76b78d44f7..0000000000
--- a/test/files/jvm/t2359.scala
+++ /dev/null
@@ -1,48 +0,0 @@
-
-
-@deprecated("Suppress warnings", since="2.11")
-object Test {
- import scala.actors.Futures._
- def main(args: Array[String]) {
- val x = future {
- try {
- System.out.println(1)
- future {
- try {
- System.out.println(2)
- future {
- try {
- System.out.println(3)
- future {
- try {
- System.out.println(4)
- future {
- try {
- System.out.println(5)
- } catch {
- case e: Throwable if !e.isInstanceOf[scala.util.control.ControlThrowable] =>
- e.printStackTrace()
- }
- }()
- } catch {
- case e: Throwable if !e.isInstanceOf[scala.util.control.ControlThrowable] =>
- e.printStackTrace()
- }
- }()
- } catch {
- case e: Throwable if !e.isInstanceOf[scala.util.control.ControlThrowable] =>
- e.printStackTrace()
- }
- }()
- } catch {
- case e: Throwable if !e.isInstanceOf[scala.util.control.ControlThrowable] =>
- e.printStackTrace()
- }
- }()
- } catch {
- case e: Throwable if !e.isInstanceOf[scala.util.control.ControlThrowable] =>
- e.printStackTrace()
- }
- }()
- }
-}