about summary refs log tree commit diff stats
path: root/064list.mu
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-27 10:28:14 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-27 10:28:14 -0700
commit048a33c24fe4b1e937391693e3556e1edfdbfbcd (patch)
tree2bf1f6034171283d1f01123d79a9deeef5949647 /064list.mu
parenta91e183799b5ba41455c79e648ff4397a27838c4 (diff)
downloadmu-048a33c24fe4b1e937391693e3556e1edfdbfbcd.tar.gz
3422
Stop checking the number of ingredients and products when picking
shape-shifting recipes. That's more consistent with how we handle
regular recipes, and we still get errors in all the examples I can think
of:

  reverse  # no ingredients or products
  n:num <- length  # no ingredients; products don't provide type
Diffstat (limited to '064list.mu')
-rw-r--r--064list.mu2
1 files changed, 1 insertions, 1 deletions
diff --git a/064list.mu b/064list.mu
index 13fc581e..4aa24b04 100644
--- a/064list.mu
+++ b/064list.mu
@@ -277,7 +277,7 @@ scenario reverse-list [
     list <- push 2, list
     list <- push 3, list
     stash [list:], list
-    list <- reverse list, 0
+    list <- reverse list
     stash [reversed:], list
   ]
   trace-should-contain [