summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorIulian Dragos <jaguarul@gmail.com>2006-01-30 15:04:26 +0000
committerIulian Dragos <jaguarul@gmail.com>2006-01-30 15:04:26 +0000
commit432ea8895bac4854ff341ada68f8f58349b6b150 (patch)
tree8bcc5f9a5e9d8cb6b03c5ef0e61b3aec157cdd18 /test
parent03c4d117bda836efba2017cd9497709f676371e4 (diff)
downloadscala-432ea8895bac4854ff341ada68f8f58349b6b150.tar.gz
scala-432ea8895bac4854ff341ada68f8f58349b6b150.tar.bz2
scala-432ea8895bac4854ff341ada68f8f58349b6b150.zip
Removed justthrow test file, as this case is co...
Removed justthrow test file, as this case is covered now in try-2.scala.
Diffstat (limited to 'test')
-rw-r--r--test/files/run/justthrow.check1
-rw-r--r--test/files/run/justthrow.scala10
2 files changed, 0 insertions, 11 deletions
diff --git a/test/files/run/justthrow.check b/test/files/run/justthrow.check
deleted file mode 100644
index fb28403fcb..0000000000
--- a/test/files/run/justthrow.check
+++ /dev/null
@@ -1 +0,0 @@
-exception happened
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");
- }
- }
-}