about summary refs log tree commit diff stats
path: root/053recipe_header.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-17 00:31:55 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 00:31:55 -0700
commit08f4628e8b858120fe3547d8e5431d9abfe46bf8 (patch)
tree4d9f1bc0039baefa0e84d9cb3ea6634f4337d342 /053recipe_header.cc
parent58a9f7c34e21541f2db90b7fb66f4e92f04780ef (diff)
downloadmu-08f4628e8b858120fe3547d8e5431d9abfe46bf8.tar.gz
3379
Can't use type abbreviations inside 'memory-should-contain'.
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 0bbba110..3afa2569 100644
--- a/053recipe_header.cc
+++ b/053recipe_header.cc
@@ -145,11 +145,11 @@ if (result.has_header) {
 //: Support type abbreviations in headers.
 
 :(scenario type_abbreviations_in_recipe_headers)
-type string = address:array:character
+type string = address:array:char
 def main [
   local-scope
   a:string <- foo
-  1:character/raw <- index *a, 0
+  1:char/raw <- index *a, 0
 ]
 def foo -> a:string [
   local-scope