summaryrefslogtreecommitdiff
path: root/test/files/continuations-neg/t5314-type-error.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-neg/t5314-type-error.scala')
-rw-r--r--test/files/continuations-neg/t5314-type-error.scala17
1 files changed, 0 insertions, 17 deletions
diff --git a/test/files/continuations-neg/t5314-type-error.scala b/test/files/continuations-neg/t5314-type-error.scala
deleted file mode 100644
index e36ce6c203..0000000000
--- a/test/files/continuations-neg/t5314-type-error.scala
+++ /dev/null
@@ -1,17 +0,0 @@
-import scala.util.continuations._
-
-object Test extends App {
- def foo(x:Int): Int @cps[Int] = shift { k => k(x) }
-
- // should be a type error
- def bar(x:Int): Int @cps[String] = return foo(x)
-
- def caller(): Unit = {
- val v: String = reset {
- val res: Int = bar(8)
- "hello"
- }
- }
-
- caller()
-}