summaryrefslogtreecommitdiff
path: root/test/pending/run/reify_lazyevaluation.check
diff options
context:
space:
mode:
Diffstat (limited to 'test/pending/run/reify_lazyevaluation.check')
-rw-r--r--test/pending/run/reify_lazyevaluation.check8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/pending/run/reify_lazyevaluation.check b/test/pending/run/reify_lazyevaluation.check
new file mode 100644
index 0000000000..1c7f96cd96
--- /dev/null
+++ b/test/pending/run/reify_lazyevaluation.check
@@ -0,0 +1,8 @@
+s = Susp(?)
+evaluating...
+s() = 3
+s = Susp(3)
+2 + s = 5
+sl2 = Susp(?)
+sl2() = Some(3)
+sl2 = Susp(Some(3))