blob: a9566d5b0f729303886a4f8778be015e71c1cce7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
package body other_pkg is
procedure other_proc (
variable result : out boolean) is
begin
end;
impure function other_proc
return boolean is
variable result : boolean;
begin
return result;
end function other_proc;
end package body other_pkg;
|