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, 17 insertions, 0 deletions
diff --git a/test/files/continuations-neg/t5314-type-error.scala b/test/files/continuations-neg/t5314-type-error.scala
new file mode 100644
index 0000000000..e36ce6c203
--- /dev/null
+++ b/test/files/continuations-neg/t5314-type-error.scala
@@ -0,0 +1,17 @@
+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()
+}