verilog: add sv_maps iterators
[ghdl-vlg.git] / testsuite / synth / issue1283 / issue3.vhdl
blob809fcd49c75d838c00db54b30428807b5dc28098
1 library ieee;
2 use ieee.std_logic_1164.all;
4 entity issue3 is
5 end issue3;
7 architecture beh of issue3 is
8     type t_rec is
9         record
10             elem : std_logic_vector (3 downto 0);
11         end record;
12 begin
13     assert t_rec'(elem => 4b"0") = t_rec'(elem => 3b"0");
14 end architecture beh;