aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue787/ent.vhdl
blob: db7063d1881bae596c4b55162d327a5c6b547e5b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
entity ent is
end ent;

architecture a of ent is
	signal sig_x : bit;
	signal sig_y : bit;

	signal sig_z : bit_vector(1 downto 0);
begin
	-- works
	-- (sig_x, sig_y) <= sig_z;

	-- "raised TYPES.INTERNAL_ERROR : trans.adb:619"
	(sig_x, sig_y) <= not sig_z;
end a;