aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1257/repro1.vhdl
blob: e3683510799dca4f4f5d9634fff76495382e775b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
entity repro1 is
end repro1;

library ieee;
use ieee.std_logic_1164.all;

architecture behav of repro1 is
   signal left : std_logic_vector(1 downto 0);
   signal right : std_logic_vector(2 downto 0);
begin
    left <= right;
end;