summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/t1821.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/continuations-run/t1821.scala')
-rw-r--r--test/files/continuations-run/t1821.scala4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/files/continuations-run/t1821.scala b/test/files/continuations-run/t1821.scala
index 0d5fb553be..55bf7b6f12 100644
--- a/test/files/continuations-run/t1821.scala
+++ b/test/files/continuations-run/t1821.scala
@@ -11,10 +11,10 @@ object Test {
def test3[A](x: A): A @suspendable = x match { case x => x }
def test4[A](x: List[A]): A @suspendable = x match { case List(x) => x }
- def main(args: Array[String]) = {
+ def main(args: Array[String]) {
println(reset(test1()))
println(reset(test2(List(()))))
println(reset(test3()))
println(reset(test4(List(()))))
}
-} \ No newline at end of file
+}