summaryrefslogtreecommitdiff
path: root/test/files/run/justthrow.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/run/justthrow.scala')
-rw-r--r--test/files/run/justthrow.scala10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/files/run/justthrow.scala b/test/files/run/justthrow.scala
deleted file mode 100644
index 0ff5b54e71..0000000000
--- a/test/files/run/justthrow.scala
+++ /dev/null
@@ -1,10 +0,0 @@
-object Test {
- def main(args:Array[String]): Unit = {
- try {
- throw new Error();
- }
- catch {
- case _ => Console.println("exception happened\n");
- }
- }
-}