aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/proctarg.vhdl
blob: 95258ecb8fae6e1eef7f8bf82c18ca4e1dc08099 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
entity proctarg is
end proctarg;

architecture behav of proctarg is
  procedure proc (n : natural) is
  begin
    proc := true;
  end proc;

  procedure proc (n : boolean) is
  begin
    proc <= true;
  end proc;
begin
end;