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

architecture arch of show_bug is
begin

  process is
  begin
        report("a", "b");
        wait;
  end process;

end architecture arch;