about summary refs log tree commit diff stats
path: root/073wait.cc
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2016-09-17 00:46:03 -0700
committerKartik K. Agaram <vc@akkartik.com>2016-09-17 00:46:03 -0700
commitd52406ccd9eb19be40b85a3a2a1b00e5052afb9b (patch)
tree18936281f60f84ea1ceb024b1b1580d376f765c6 /073wait.cc
parent192d59d3bb9ee0baa1afd82cb5d0f352bdc6e403 (diff)
downloadmu-d52406ccd9eb19be40b85a3a2a1b00e5052afb9b.tar.gz
3381
Diffstat (limited to '073wait.cc')
-rw-r--r--073wait.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/073wait.cc b/073wait.cc
index a762a8b7..942c6871 100644
--- a/073wait.cc
+++ b/073wait.cc
@@ -243,13 +243,13 @@ def main [
 :(scenario get_location_product_type_mismatch)
 % Hide_errors = true;
 container boolbool [
-  x:boolean
-  y:boolean
+  x:bool
+  y:bool
 ]
 def main [
-  12:boolean <- copy 1
-  13:boolean <- copy 0
-  15:boolean <- get-location 12:boolbool, 1:offset
+  12:bool <- copy 1
+  13:bool <- copy 0
+  15:bool <- get-location 12:boolbool, 1:offset
 ]
 +error: main: 'get-location 12:boolbool, 1:offset' should write to type location but '15' has type 'boolean'