aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue1324/foo.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/synth/issue1324/foo.vhdl')
-rw-r--r--testsuite/synth/issue1324/foo.vhdl19
1 files changed, 19 insertions, 0 deletions
diff --git a/testsuite/synth/issue1324/foo.vhdl b/testsuite/synth/issue1324/foo.vhdl
new file mode 100644
index 000000000..84c7698f6
--- /dev/null
+++ b/testsuite/synth/issue1324/foo.vhdl
@@ -0,0 +1,19 @@
+library ieee;
+use ieee.std_logic_1164.all;
+use ieee.numeric_std.all;
+use work.pkg.all;
+
+entity foo is
+ port (
+ bus_in : in bus_t(data(7 downto 0));
+ bus_out : out bus_t(data(7 downto 0))
+ );
+end foo;
+
+architecture foo of foo is
+
+begin
+
+ bus_out <= bus_in;
+
+end foo;