aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1898/scale4.vhdl
blob: 8220ff8a9d34c474af61b53d82d609870c30854c (plain)
1
2
3
4
5
6
7
8
9
entity scale4 is
    port(b : in bit;
         w : out bit_vector(0 to 1));
end entity scale4;

architecture boop of scale4 is
begin
    w <= b and "01";
end architecture boop;