1 package body Loop_Optimization1_Pkg
is
3 type Unconstrained_Array_Type
4 is array (Index_Type
range <>) of Element_Type
;
6 procedure Local
(UA
: in out Unconstrained_Array_Type
) is
11 procedure Proc
(CA
: in out Constrained_Array_Type
) is
13 Local
(Unconstrained_Array_Type
(CA
));
16 end Loop_Optimization1_Pkg
;