blob: e3680d22ccdca9c1811750d702ae022525766475 (
plain)
1
2
3
4
5
6
7
8
9
10
|
entity repro3 is
end;
architecture behavioral of repro3 is
signal s_index : natural;
signal s_wrcnt : integer range 0 to 3;
constant c : integer_vector := (0 => 1);
begin
assert (s_wrcnt = 3 and s_index => 5) = c;
end behavioral; -- behavioral
|