aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2174/t2.vhdl
blob: b1449665ccd57e985c1c5fc9d465d64b9f62639f (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 t2 is
end;

architecture behav of t2 is
  subtype stext is text;

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