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
/
issue1.vhdl
blob
ee001e5379232bae6dbaa779d4244b2f39253cf6
1
library ieee;
2
use ieee.std_logic_1164.all;
3
4
entity issue1 is
5
end issue1;
6
7
architecture beh of issue1 is
8
type t_rec is
9
record
10
elem : std_logic_vector;
11
end record;
12
begin
13
assert t_rec'(elem => "000") = t_rec'(elem => "000");
14
assert t_rec'(elem => "001") = t_rec'(elem => "000") severity note;
15
end architecture beh;