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

architecture behav of simple is
begin
  process
  begin
    report "hello";
    assert false report "SUCESS";
  end process;
end behav;