diff options
author | Tristan Gingold <tgingold@free.fr> | 2022-06-15 19:03:19 +0200 |
---|---|---|
committer | Tristan Gingold <tgingold@free.fr> | 2022-06-15 19:03:19 +0200 |
commit | a85641c47827cb10ca07ff6dee9c49bf67d5757d (patch) | |
tree | 3c302d3f91ce1fa8f2ff4d234f58a5f522de5ab4 /testsuite/gna/issue2071/repro.vhdl | |
parent | c8af6888a2a4b2d73f759ba8663882a8c34c75a4 (diff) | |
download | ghdl-a85641c47827cb10ca07ff6dee9c49bf67d5757d.tar.gz ghdl-a85641c47827cb10ca07ff6dee9c49bf67d5757d.tar.bz2 ghdl-a85641c47827cb10ca07ff6dee9c49bf67d5757d.zip |
testsuite/gna: add a test for #2071
Diffstat (limited to 'testsuite/gna/issue2071/repro.vhdl')
-rw-r--r-- | testsuite/gna/issue2071/repro.vhdl | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/testsuite/gna/issue2071/repro.vhdl b/testsuite/gna/issue2071/repro.vhdl new file mode 100644 index 000000000..aa6bcf1c0 --- /dev/null +++ b/testsuite/gna/issue2071/repro.vhdl @@ -0,0 +1,18 @@ +library ieee; +use ieee.std_logic_1164.all; +use ieee.numeric_std.all; + +entity repro is +end; + +architecture behav of repro is + type matrixType is array(natural range <>) of std_logic_vector; + signal matrix : matrixType(0 to 15)(7 downto 0); + + -- Missing feature: + signal row1 : unsigned(matrix'element'range); + + -- As a workaround: + signal row2 : unsigned(matrix(matrix'low)'range); +begin +end behav; |