about summary refs log tree commit diff stats
path: root/046global.cc
diff options
context:
space:
mode:
Diffstat (limited to '046global.cc')
-rw-r--r--046global.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/046global.cc b/046global.cc
index 39cc3a6b..6990844b 100644
--- a/046global.cc
+++ b/046global.cc
@@ -18,8 +18,8 @@ def main [
   20:num <- copy 0  # refcount
   21:num <- copy 5  # length
   # actual start of this recipe
-  global-space:&:@:location <- copy 20/unsafe
-  default-space:&:@:location <- copy 10/unsafe
+  global-space:space <- copy 20/unsafe
+  default-space:space <- copy 10/unsafe
   1:num <- copy 23
   1:num/space:global <- copy 24
 ]
@@ -63,7 +63,7 @@ if (x.name == "global-space") {
 
 :(scenario global_space_with_names)
 def main [
-  global-space:&:@:location <- new location:type, 10
+  global-space:space <- new location:type, 10
   x:num <- copy 23
   1:num/space:global <- copy 24
 ]