summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t5314-3.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/t5314-3.scala')
-rw-r--r--test/files/continuations-run/t5314-3.scala10
1 files changed, 5 insertions, 5 deletions
diff --git a/test/files/continuations-run/t5314-3.scala b/test/files/continuations-run/t5314-3.scala
index 62c547f5a2..c2fe8f6f87 100644
--- a/test/files/continuations-run/t5314-3.scala
+++ b/test/files/continuations-run/t5314-3.scala
@@ -1,14 +1,14 @@
import scala.util.continuations._
-class ReturnRepro {
- def s1: Int @cpsParam[Any, Unit] = shift { k => k(5) }
+class ReturnRepro {
+ def s1: Int @cpsParam[Any, Unit] = shift { k => k(5) }
def caller = reset { println(p(3)) }
def caller2 = reset { println(p2(3)) }
- def p(i: Int): Int @cpsParam[Unit, Any] = {
- val v= s1 + 3
+ def p(i: Int): Int @cpsParam[Unit, Any] = {
+ val v= s1 + 3
return { println("enter return expr"); v }
- }
+ }
def p2(i: Int): Int @cpsParam[Unit, Any] = {
val v = s1 + 3