summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t3223.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/t3223.scala')
-rw-r--r--test/files/continuations-run/t3223.scala19
1 files changed, 19 insertions, 0 deletions
diff --git a/test/files/continuations-run/t3223.scala b/test/files/continuations-run/t3223.scala
new file mode 100644
index 0000000000..4e510178e6
--- /dev/null
+++ b/test/files/continuations-run/t3223.scala
@@ -0,0 +1,19 @@
+import scala.util.continuations._
+object Test {
+
+ def foo(x:Int) = {
+ try {
+ throw new Exception
+ shiftUnit0[Int,Int](7)
+ } catch {
+ case ex =>
+ val g = (a:Int)=>a
+ 9
+ }
+ }
+
+ def main(args: Array[String]) {
+ println(reset(foo(0)))
+ }
+
+} \ No newline at end of file