aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1178/issue1.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue1178/issue1.vhdl')
-rw-r--r--testsuite/synth/issue1178/issue1.vhdl14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/synth/issue1178/issue1.vhdl b/testsuite/synth/issue1178/issue1.vhdl
new file mode 100644
index 000000000..fcff6f370
--- /dev/null
+++ b/testsuite/synth/issue1178/issue1.vhdl
@@ -0,0 +1,14 @@
+library ieee;
+use ieee.std_logic_1164.all;
+
+entity issue1 is
+ port (foobar : in std_logic_vector(3 downto 0);
+ foo : out std_logic_vector(1 downto 0);
+ bar : out std_logic_vector(1 downto 0));
+end issue1;
+
+architecture behav of issue1 is
+begin
+ (foo, bar) <= foobar;
+end architecture;
+