3 package body Array19
is
5 function N
return Integer is
10 type Array_Type
is array (1 .. N
) of Float;
12 type Enum
is (One
, Two
);
14 type Rec
(D
: Enum
:= Enum
'First) is record
17 when Two
=> A
: Array_Type
;
25 function F
return Array_Type
is
27 return (others => 0.0);