2 -- { dg-options "-gnatws" }
8 type R
(D
: E
:= One
) is record
18 type Data_Type
is record
22 type Array_Type
is array (Natural range <>) of Data_Type
;
24 function Get
return Array_Type
is
25 Ret
: Array_Type
(1 .. 2);
30 Object
: aliased Array_Type
:= Get
;