aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2166/taggr.vhdl
blob: 478602ca72d37503546afc845e8b8d81dc0d45d6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
entity taggr is
end;

architecture behav of taggr is
  procedure set (v : out string) is
  begin
    v := (others => ' ');
  end set;
begin
  process
    variable s : string (1 to 8);
  begin
    set (s);
    report '<' & s & '>';
    wait;
  end process;
end;