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, 0 insertions, 19 deletions
diff --git a/test/files/continuations-run/t3223.scala b/test/files/continuations-run/t3223.scala
deleted file mode 100644
index 4e510178e6..0000000000
--- a/test/files/continuations-run/t3223.scala
+++ /dev/null
@@ -1,19 +0,0 @@
-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