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

architecture behav of repro1 is
  signal sig : bit_vector (7 downto 0);
begin
  g : for i in sig1'range generate
    sig (i) <= sig (i) and '1';
  end generate;
end behav;