aboutsummaryrefslogtreecommitdiff
path: root/test/passes/expand-accessors/accessor-mem.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/expand-accessors/accessor-mem.fir')
-rw-r--r--test/passes/expand-accessors/accessor-mem.fir2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/passes/expand-accessors/accessor-mem.fir b/test/passes/expand-accessors/accessor-mem.fir
index 660ce77e..d385fcaa 100644
--- a/test/passes/expand-accessors/accessor-mem.fir
+++ b/test/passes/expand-accessors/accessor-mem.fir
@@ -10,7 +10,7 @@ circuit top :
infer accessor a = m[i] ;CHECK: read accessor a = m[i]
infer accessor b = a[i] ;CHECK: b := (a[0] a[1])[i]
infer accessor c = b[i] ;CHECK: c := (b[0] b[1])[i]
- wire j : UInt
+ wire j : UInt<32>
j := c
infer accessor x = m[i] ;CHECK: write accessor x = m[i]