aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue899/testing.vhdl
diff options
context:
space:
mode:
Diffstat (limited to 'testsuite/gna/issue899/testing.vhdl')
-rw-r--r--testsuite/gna/issue899/testing.vhdl13
1 files changed, 13 insertions, 0 deletions
diff --git a/testsuite/gna/issue899/testing.vhdl b/testsuite/gna/issue899/testing.vhdl
new file mode 100644
index 000000000..dc1b7df3e
--- /dev/null
+++ b/testsuite/gna/issue899/testing.vhdl
@@ -0,0 +1,13 @@
+library IEEE;
+use IEEE.NUMERIC_STD.ALL;
+
+entity testing is
+generic(
+ GENVAL : integer := 4);
+end entity;
+
+architecture RTL of testing is
+ type pixel_line is array(natural range <>) of bit_vector;
+ signal data_in : pixel_line(0 to GENVAL)(7 downto 0);
+begin
+end architecture;