aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug033/simple08.vhdl
blob: 1f919e82f01eb1290406cfdc340561ff212539fd (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/* Using vhdl 2008 comments.  */
entity simple08 is
end;

architecture behav of simple08 is
begin
  process
  begin
    assert false report "Test is running" severity note;
    wait; -- Indefinite
  end process;
end behav;