aboutsummaryrefslogtreecommitdiff
path: root/stdlib/test
diff options
context:
space:
mode:
authorEduardo Julian2016-12-22 00:34:51 -0400
committerEduardo Julian2016-12-22 00:34:51 -0400
commit5becc5d52eb60fd69e11d6824f9aa6634a94b38c (patch)
treed64a458c1f75ea3ee3a61bfb39ba9755a5a0934d /stdlib/test
parentca8c544b812c3cc4c7bb8cf509b1eb30a2484a4c (diff)
- Won't be testing call/cc for now.
Diffstat (limited to 'stdlib/test')
-rw-r--r--stdlib/test/test/lux/codata/cont.lux12
1 files changed, 6 insertions, 6 deletions
diff --git a/stdlib/test/test/lux/codata/cont.lux b/stdlib/test/test/lux/codata/cont.lux
index 7e2daa823..251f8f50d 100644
--- a/stdlib/test/test/lux/codata/cont.lux
+++ b/stdlib/test/test/lux/codata/cont.lux
@@ -36,10 +36,10 @@
arg (wrap sample)]
(wrap (func arg))))))
- (assert "Can access current continuation."
- (n.= (n.dec sample) (&;run (do &;Monad<Cont>
- [func (wrap n.inc)
- _ (&;call/cc (lambda [k] (k (n.dec sample))))
- arg (wrap sample)]
- (wrap (func arg))))))
+ ## (assert "Can access current continuation."
+ ## (n.= (n.dec sample) (&;run (do &;Monad<Cont>
+ ## [func (wrap n.inc)
+ ## _ (&;call/cc (lambda [k] (k (n.dec sample))))
+ ## arg (wrap sample)]
+ ## (wrap (func arg))))))
))