summaryrefslogtreecommitdiff
path: root/test/files/jvm/t3838.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/t3838.scala')
-rw-r--r--test/files/jvm/t3838.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/files/jvm/t3838.scala b/test/files/jvm/t3838.scala
deleted file mode 100644
index a1a71d1049..0000000000
--- a/test/files/jvm/t3838.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-
-
-@deprecated("Suppress warnings", since="2.11")
-object Test {
- import scala.actors.Actor._
- def main(args: Array[String]) {
- actor {
- try {
- receiveWithin(1) {
- case str: String => println(str)
- }
- } catch {
- case e: Exception => println("caught "+e)
- }
- }
- }
-}