aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket67/bug.vhdl
blob: bb0ad1e11bf9406ec4ad2290fda388a192417ebd (plain)
1
2
3
4
5
6
7
8
9
10
11
entity ent is
end entity;

architecture a of ent is
begin
  main : process is
  begin
    report "s" & to_string(1);
    wait;
  end process;
end architecture;