blob: e267fe2e1d29119e6482980bc7af5307c48091d3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
entity repro4 is
end;
architecture behav of repro4 is
impure function f(a : bit_vector) return bit_vector
is
variable n : natural := 2;
subtype st is natural range 1 to n;
constant b : st := 5;
begin
assert b /= 0;
return a;
end f;
begin
assert f("01") = "01";
end behav;
|