summaryrefslogtreecommitdiff
path: root/testsuite/gna/bug24326/tb_thingy7.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/bug24326/tb_thingy7.vhdl')
-rw-r--r--testsuite/gna/bug24326/tb_thingy7.vhdl27
1 files changed, 27 insertions, 0 deletions
diff --git a/testsuite/gna/bug24326/tb_thingy7.vhdl b/testsuite/gna/bug24326/tb_thingy7.vhdl
new file mode 100644
index 0000000..6df4205
--- /dev/null
+++ b/testsuite/gna/bug24326/tb_thingy7.vhdl
@@ -0,0 +1,27 @@
+entity tb_thingy is
+end tb_thingy;
+
+architecture tb of tb_thingy is
+ component thingy is
+ generic (
+ a_a : integer
+ );
+ port (
+ x_x : in bit;
+ y_y : out bit
+ );
+ end component;
+ signal stimuli : bit;
+ signal response : bit;
+begin
+
+ dut : thingy
+ generic map (
+ a_a => 42
+ )
+ port map (
+ x%x => stimuli, -- <==
+ y_y => response
+ );
+
+end tb;