aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug033/simple.vhdl
blob: 8434da6f5ba494707d88a9ee3db35d4261488c31 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
entity simple is
end;

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