about summary refs log tree commit diff stats
path: root/072recipe.cc
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2018-06-17 11:20:53 -0700
committerKartik Agaram <vc@akkartik.com>2018-06-17 15:57:37 -0700
commit01ce563dfe3e6cf58337708b9dbb60a8a99fa0f2 (patch)
tree696fce7bb207e77952d10b7358f4ce00faed3874 /072recipe.cc
parentdd66068298b0a11f2a1f195376cba98e0c8570b5 (diff)
downloadmu-01ce563dfe3e6cf58337708b9dbb60a8a99fa0f2.tar.gz
4262 - literal 'null'
Diffstat (limited to '072recipe.cc')
-rw-r--r--072recipe.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/072recipe.cc b/072recipe.cc
index dd71830d..439b2000 100644
--- a/072recipe.cc
+++ b/072recipe.cc
@@ -389,7 +389,7 @@ if (is_mu_recipe(to)) {
 :(scenario call_variable_compound_ingredient)
 def main [
   {1: (recipe (address number) -> number)} <- copy f
-  2:&:num <- copy 0
+  2:&:num <- copy null
   3:num <- call {1: (recipe (address number) -> number)}, 2:&:num
 ]
 def f x:&:num -> y:num [