blob: a36d5de2d2d28faf9eda7941667de0b5ec623d1f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
entity repro2 is
generic (l : natural := 10);
end repro2;
architecture behav of repro2 is
begin
process
variable v : string (1 to l);
alias a : string is v;
begin
v := (others => ' ');
a := (others => 'x');
wait;
end process;
end behav;
|