blob: bc5c6048d677c742dfff7bc4629b0439fe9c1b1b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
package repro4 is
constant a1 : natural := 1;
constant a2 : natural := 1;
alias b1 : natural is a1;
alias b2 : natural is a2;
function f (arg : bit; length : string (1 to b1)) return bit;
end;
package body repro4 is
function f (arg : bit; length : string (1 to b2)) return bit is
begin
return arg;
end;
end;
|