aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue803/tb.vhdl
blob: 61ee11e421d464e2ab0cc27a551bc7026ca25d58 (plain)
1
2
3
4
5
6
7
8
9
10
entity tb is
end entity;

architecture arch of tb is
begin
  process begin
    report "Hello!" severity failure;
    wait;
  end process;
end;