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

architecture a of e1 is
begin

    ------------------------------------------------------------------------
    -- There is no infinite loop when std.env.stop is unconditionally executed
    ------------------------------------------------------------------------
    process
    begin
        std.env.stop;
    end process;
end;