diff options
Diffstat (limited to 'testsuite/gna/issue2350/test7.vhdl')
-rw-r--r-- | testsuite/gna/issue2350/test7.vhdl | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/testsuite/gna/issue2350/test7.vhdl b/testsuite/gna/issue2350/test7.vhdl new file mode 100644 index 000000000..e11354f2c --- /dev/null +++ b/testsuite/gna/issue2350/test7.vhdl @@ -0,0 +1,15 @@ +library ieee ; + use ieee.std_logic_1164.all ; + use ieee.numeric_std.all ; + +entity test7 is +end entity ; + +architecture arch of test7 is + + type cx_t is array (1 to 2) of signed (15 downto 0); + + constant x : cx_t := ( 1 => to_signed(0, 16), 2 => to_signed(0, 17)); + +begin +end architecture ; |