summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJosh Suereth <Joshua.Suereth@gmail.com>2012-08-20 12:15:36 -0700
committerJosh Suereth <Joshua.Suereth@gmail.com>2012-08-20 12:15:36 -0700
commitef6f00588b3f9afb191e1e7d9046c2f1cdd511b6 (patch)
tree86d800f119c0d3373a425e4709e3ce2c337b23f0 /test
parentc51d0a8ad9aba128cd317ddbc13f1f49935066f0 (diff)
parent24502208feff83d6a7b8197f5051856ec5cf9983 (diff)
downloadscala-ef6f00588b3f9afb191e1e7d9046c2f1cdd511b6.tar.gz
scala-ef6f00588b3f9afb191e1e7d9046c2f1cdd511b6.tar.bz2
scala-ef6f00588b3f9afb191e1e7d9046c2f1cdd511b6.zip
Merge pull request #1165 from jsuereth/fix/try-catch-libs
Fix/try catch libs
Diffstat (limited to 'test')
-rw-r--r--test/files/run/try-catch-unify.check3
-rw-r--r--test/files/run/try-catch-unify.scala15
2 files changed, 18 insertions, 0 deletions
diff --git a/test/files/run/try-catch-unify.check b/test/files/run/try-catch-unify.check
new file mode 100644
index 0000000000..b1de2bfa74
--- /dev/null
+++ b/test/files/run/try-catch-unify.check
@@ -0,0 +1,3 @@
+Failure(java.lang.NumberFormatException: For input string: "Hi")
+Success(5.0)
+O NOES
diff --git a/test/files/run/try-catch-unify.scala b/test/files/run/try-catch-unify.scala
new file mode 100644
index 0000000000..0d819ab957
--- /dev/null
+++ b/test/files/run/try-catch-unify.scala
@@ -0,0 +1,15 @@
+import util._
+
+import control.Exception._
+
+object Test {
+ def main(args: Array[String]): Unit = {
+ println(catching(classOf[NumberFormatException]) withTry ("Hi".toDouble))
+ println(catching(classOf[NumberFormatException]) withTry ("5".toDouble))
+ try {
+ catching(classOf[NumberFormatException]) withTry (sys.error("O NOES"))
+ } catch {
+ case t => println(t.getMessage)
+ }
+ }
+}