aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/bug0100/procinter.vhdl
blob: 2090af217b58d6aa4b20bfd2cd5d3f4bd9cb45ed (plain)
1
2
3
4
5
6
7
8
9
10
entity procinter is
end;

architecture arch of procinter is
  procedure proc (procedure proc2 (v : natural)) is
  begin
    null;
  end proc;
begin
end arch;