verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue2084 / bug.vhdl
blob847ac0f1ba14c65442b2ff164e968ee24b05dd44
1 library IEEE;
2 use IEEE.std_logic_1164.all;
4 entity bug is
5         port (
6                 src : in std_ulogic_vector(31 downto 0)
7         );
8 end bug;
10 architecture rtl of bug is
11         type array_t is array(0 to 0) of src'subtype;
12         signal s : array_t;
13 begin
15 end architecture;