aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/synth/issue2328/test.vhdl
blob: 520e2d22f3435a5245f18296c536d2d7168af62f (plain)
1
2
3
4
5
6
7
8
9
entity test is
end test;

architecture behavior of test is
signal a: bit_vector(3 downto 0);
signal b: bit;
begin
	b <= and a;
end behavior;