aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug017/for1.vhdl
blob: 02be9a1ef380b29de73d17dc3073375e613395a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
entity for1 is
end;

architecture behav of for1 is
begin
  process
  begin
    for i in 1 to 10 loop
      report "hello";
      wait for 1 ns;
    end loop;
    report "SUCCESS";
    wait;
  end process;
 
end behav;