aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1199/issue2.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue1199/issue2.vhdl')
-rw-r--r--testsuite/synth/issue1199/issue2.vhdl14
1 files changed, 14 insertions, 0 deletions
diff --git a/testsuite/synth/issue1199/issue2.vhdl b/testsuite/synth/issue1199/issue2.vhdl
new file mode 100644
index 000000000..888b074d2
--- /dev/null
+++ b/testsuite/synth/issue1199/issue2.vhdl
@@ -0,0 +1,14 @@
+library IEEE;
+use IEEE.std_logic_1164.all;
+
+entity issue2 is
+ port(
+ a : in std_logic_vector(7 downto 0);
+ b : out std_logic_vector(2 downto 0)
+ );
+end issue2;
+
+architecture behavior of issue2 is
+begin
+ b <= a;
+end behavior;