aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug017/loop2.vhdl
blob: 47a7da6b15539c39841f4a65a50c4f5ad7a866b9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
entity loop2 is
end;

architecture behav of loop2 is
begin
  process
    variable i : natural := 0;
  begin
    report "hello";
    loop
      exit when i = 10;
      wait for 1 ns;
      report "hello2";
      i := i + 1;
    end loop;
    report "SUCCESS";
    wait;
  end process;
 
end behav;