summaryrefslogtreecommitdiff
path: root/test/files/continuations-run/shift-pct.scala
diff options
context:
space:
mode:
authorAdriaan Moors <adriaan.moors@typesafe.com>2013-12-02 17:10:35 -0800
committerAdriaan Moors <adriaan.moors@typesafe.com>2013-12-13 17:36:16 -0800
commit858a5d513779f4af6f12c0a530bdeceb7a7fd4d9 (patch)
treebecda6df1363a92c1fcdf39643433ba101de4c10 /test/files/continuations-run/shift-pct.scala
parent7e74aa6b134bcaf158bd51aa7a63a4aaa8fee62e (diff)
downloadscala-858a5d513779f4af6f12c0a530bdeceb7a7fd4d9.tar.gz
scala-858a5d513779f4af6f12c0a530bdeceb7a7fd4d9.tar.bz2
scala-858a5d513779f4af6f12c0a530bdeceb7a7fd4d9.zip
Modularize continuations plugin.
The continuations plugin and library will still ship with 2.11 (albeit unsupported). They now reside at https://github.com/scala/scala-continuations.
Diffstat (limited to 'test/files/continuations-run/shift-pct.scala')
-rw-r--r--test/files/continuations-run/shift-pct.scala30
1 files changed, 0 insertions, 30 deletions
diff --git a/test/files/continuations-run/shift-pct.scala b/test/files/continuations-run/shift-pct.scala
deleted file mode 100644
index 7ef9922168..0000000000
--- a/test/files/continuations-run/shift-pct.scala
+++ /dev/null
@@ -1,30 +0,0 @@
-import scala.util.continuations._
-
-object Test {
- abstract class IfReturnRepro {
- def s1: Double @cpsParam[Any, Unit]
- def s2: Double @cpsParam[Any, Unit]
-
- def p(i: Int): Double @cpsParam[Unit, Any] = {
- val px = s1
- val pct = if (px > 100) px else px / s2
- println("pct = %.3f".format(pct))
- pct
- }
- }
-
- def main(args: Array[String]) : Unit = {
- var d: Double = 0d
- def d2 = d * d
-
- val irr = new IfReturnRepro {
- def s1 = shift(f => f(d))
- def s2 = shift(f => f(d2))
- }
- 1 to 25 foreach { i =>
- d = i
- print("d = " + i + ", d2 = " + d2 + ", ")
- run(irr p i)
- }
- }
-}