verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1628 / test2.vhdl
blob93f2d094ac4e636cc32d1cee98828f0bedffefe9
1 library ieee;
2 use ieee.std_logic_1164.all;
3 use ieee.numeric_std_unsigned.all;
5 entity test2 is
6   port (
7    a : out std_logic_vector(3 downto 0));
8 end entity test2;
10 architecture synthesis of test2 is
11 begin
12    a <= to_stdlogicvector(10, 4);
13 end architecture synthesis;