aboutsummaryrefslogtreecommitdiffstats
path: root/testsuite/gna/issue2103/repro5.vhdl
blob: 9eca4a391a94ca4392437e620c26d828c87978f2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
package repro4 is
  alias n1 is natural;
  alias n2 is natural;

  function f (arg : bit; length : n1) return bit;
end;

package body repro4 is
  function f (arg : bit; length : n2) return bit is
  begin
    return arg;
  end;
end;