aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2174/t3.vhdl
blob: ba715a92a62a63ab9e3721ce447f9c4e2a9a6515 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
use std.textio.all;

entity t3 is
end;

architecture behav of t3 is
  subtype stext is text;

  procedure w (file f : text; s : string) is
  begin
    write (f, s);
  end w;
begin
  process
  begin
    w (output, "hello" & LF);
    wait;
  end process;
end behav;