blob: dcecbbd7fa40b9f653cfb8e83597a99ee00aecc3 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
entity repro4 is
end repro4;
architecture behav of repro4 is
type bv_array is array(natural range <>) of bit_vector;
type bv_array_ptr is access bv_array;
begin
process
variable count : natural := 0;
impure function seven return natural is
begin
report "seven";
count := count + 1;
return 7;
end seven;
subtype word_rng is natural range seven downto 0;
subtype word_array is bv_array(open)(word_rng);
subtype word_array4 is word_array(0 to 3);
begin
assert count = 1 severity failure;
wait;
end process;
end behav;
|