aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/ticket43/file2.vhd
blob: 0265adf8a15e93e2939e8cb1c4688dffcd9c6643 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
use work.pkg.all;

package body other_pkg is
  procedure other_proc(variable rec : inout rec_t) is
  begin
    proc(default_prot, rec);
  end;

  procedure other_proc(variable rec : inout other_rec_t) is
  begin
    proc(default_prot, rec);
  end;
end package body;