aboutsummaryrefslogtreecommitdiff
path: root/test/errors/gender/InstancePorts.fir
diff options
context:
space:
mode:
Diffstat (limited to 'test/errors/gender/InstancePorts.fir')
-rw-r--r--test/errors/gender/InstancePorts.fir6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/errors/gender/InstancePorts.fir b/test/errors/gender/InstancePorts.fir
index 55d5fd46..3f5ae8c7 100644
--- a/test/errors/gender/InstancePorts.fir
+++ b/test/errors/gender/InstancePorts.fir
@@ -6,12 +6,12 @@ circuit BTB :
module Queue :
input in : UInt<1>
output out : UInt<1>
- out := in
+ out <= in
module BTB :
input time : UInt<1>
output out : UInt<1>
inst queue of Queue
- queue.in := time
- out := queue.in
+ queue.in <= time
+ out <= queue.in