aboutsummaryrefslogtreecommitdiff
path: root/test/passes/inline-indexers/simple7.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/passes/inline-indexers/simple7.fir')
-rw-r--r--test/passes/inline-indexers/simple7.fir6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/passes/inline-indexers/simple7.fir b/test/passes/inline-indexers/simple7.fir
index cc9c6231..2ac85a58 100644
--- a/test/passes/inline-indexers/simple7.fir
+++ b/test/passes/inline-indexers/simple7.fir
@@ -6,8 +6,8 @@ circuit top :
output out : UInt<64>
input index : UInt<1>
wire T_292 : UInt<64>[2]
- T_292[0] := UInt(1)
- T_292[1] := UInt(1)
+ T_292[0] <= UInt(1)
+ T_292[1] <= UInt(1)
infer accessor T_297 = T_292[index]
- out := T_297
+ out <= T_297
;CHECK: Done!