repo.or.cz
/
ghdl-vlg.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
verilog: add sv_maps iterators
[ghdl-vlg.git]
/
testsuite
/
synth
/
issue1283
/
issue3.vhdl
blob
809fcd49c75d838c00db54b30428807b5dc28098
1
library ieee;
2
use ieee.std_logic_1164.all;
3
4
entity issue3 is
5
end issue3;
6
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;
15