aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug017/wait1.vhdl
blob: fbea74af2927235a0c4cf4224c3112f78b596ab3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
entity wait1 is
end;

architecture behav of wait1  is
begin
  process
  begin
    report "hello";
    wait for 1 ns;
    report "SUCCESS";
    wait;
  end process;
end behav;