aboutsummaryrefslogtreecommitdiff
path: root/test/errors/gender/InstancePorts.fir
diff options
context:
space:
mode:
authorazidar2015-08-04 12:32:45 -0700
committerazidar2015-08-04 12:32:45 -0700
commit45a54fadf735742b819590f3209224636e56c715 (patch)
tree025d0b33f7e1455d25adbffc2ec7c419e1a2053a /test/errors/gender/InstancePorts.fir
parentff6dfecf42560ed2e2eb678adc9ca8d868a472bd (diff)
Fixed reading from instance's input ports. Fixed unique naming bug.
Diffstat (limited to 'test/errors/gender/InstancePorts.fir')
-rw-r--r--test/errors/gender/InstancePorts.fir17
1 files changed, 17 insertions, 0 deletions
diff --git a/test/errors/gender/InstancePorts.fir b/test/errors/gender/InstancePorts.fir
new file mode 100644
index 00000000..d8d1355c
--- /dev/null
+++ b/test/errors/gender/InstancePorts.fir
@@ -0,0 +1,17 @@
+; RUN: firrtl -i %s -o %s.v -X verilog -p c 2>&1 | tee %s.out | FileCheck %s
+; CHECK-NOT: Expression queue.in is used as a sink but can only be used as a source.
+; CHECK: Done!
+
+circuit BTB :
+ module Queue :
+ input in : UInt<1>
+ output out : UInt<1>
+ out := in
+ module BTB :
+ input in : UInt<1>
+ output out : UInt<1>
+
+ inst queue of Queue
+ queue.in := in
+ out := queue.in
+