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

architecture a of e2 is
begin
    ------------------------------------------------------------------------
    -- There is no infinite loop when there is an assertion with boolean 
    -- literal false and severity failiure that is unconditioinally executed
    ------------------------------------------------------------------------
    process
    begin
        assert false severity failure;
    end process;
end;