about summary refs log tree commit diff stats
path: root/043space.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-17 00:06:04 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 00:06:04 -0700
commit7c9def3c5a35c07afdc95b383d6ff85a7c16ef0b (patch)
treec69ae0c6ec4fca45e23eed42ffbcce5fdbc71eae /043space.cc
parent14b0932a54916349b531e804acc34a1c3caf70cf (diff)
downloadmu-7c9def3c5a35c07afdc95b383d6ff85a7c16ef0b.tar.gz
3376 - start maximally using all type abbreviations
It might be too much, particularly if students start peeking inside .mu
files early. But worth a shot for not just to iron out the kinks in the
abbreviation system.
Diffstat (limited to '043space.cc')
-rw-r--r--043space.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/043space.cc b/043space.cc
index 1c26cc2f..d331342c 100644
--- a/043space.cc
+++ b/043space.cc
@@ -207,9 +207,9 @@ def foo [
 :(scenario local_scope_frees_up_addresses)
 def main [
   local-scope
-  x:address:array:character <- new [abc]
+  x:text <- new [abc]
 ]
-+mem: clearing x:address:array:character
++mem: clearing x:text
 
 :(before "End Rewrite Instruction(curr, recipe result)")
 if (curr.name == "local-scope") {