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

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