aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue1898/scale1.vhdl
blob: 745645a999623169d47be8cb61e4c15e9c9d0c75 (plain)
1
2
3
4
5
6
7
8
entity scale is
    port(w : out bit_vector(0 to 1));
end entity scale;

architecture boop of scale is
begin
    w <= '1' and b"01";
end architecture boop;