aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket77/bug4.vhdl
blob: a1f927d80e10188a8ec53d45af36f8c371a4191f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
entity ent4 is
end entity;

architecture a of ent4 is
begin
  main : process
  begin
--    wait for 0 ns; -- Comment and it exits with code 1
    std.env.stop(0);
    wait;
  end process;
end architecture;