summaryrefslogtreecommitdiff
path: root/test/files/continuations-neg/trycatch2.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-neg/trycatch2.scala')
-rw-r--r--test/files/continuations-neg/trycatch2.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/files/continuations-neg/trycatch2.scala b/test/files/continuations-neg/trycatch2.scala
index 761cee52ac..d61419169b 100644
--- a/test/files/continuations-neg/trycatch2.scala
+++ b/test/files/continuations-neg/trycatch2.scala
@@ -7,7 +7,7 @@ object Test {
def fatal[T]: T = throw new Exception
def cpsIntStringInt = shift { k:(Int=>String) => k(3); 7 }
def cpsIntIntString = shift { k:(Int=>Int) => k(3); "7" }
-
+
def foo1 = try {
fatal[Int]
cpsIntStringInt