about summary refs log tree commit diff stats
path: root/053recipe_header.cc
diff options
context:
space:
mode:
Diffstat (limited to '053recipe_header.cc')
-rw-r--r--053recipe_header.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/053recipe_header.cc b/053recipe_header.cc
index 49c9cfcc..40fd4684 100644
--- a/053recipe_header.cc
+++ b/053recipe_header.cc
@@ -272,7 +272,7 @@ void check_calls_against_header(const recipe_ordinal r) {
 def add2 x:num, y:num -> z:num [
   local-scope
   load-ingredients
-  z:address:num <- copy 0/unsafe
+  z:&:num <- copy 0/unsafe
   return z
 ]
 +error: add2: replied with the wrong type at 'return z'
@@ -304,7 +304,7 @@ void check_reply_instructions_against_header(const recipe_ordinal r) {
 def add2 x:num, y:num [
   local-scope
   load-ingredients
-  z:address:num <- copy 0/unsafe
+  z:&:num <- copy 0/unsafe
   return z
 ]
 +error: add2: replied with the wrong number of products at 'return z'