ubuntu-buildroot/output/build/host-gcc-initial-11.4.0/gcc/testsuite/gnat.dg/sso9_pkg.ads

17 lines
311 B
Ada
Raw Normal View History

2024-04-01 15:19:46 +00:00
with System;
package SSO9_Pkg is
type Rec (D : Boolean := False) is record
B : Boolean;
end record;
for Rec'Bit_Order use System.High_Order_First;
for Rec'Scalar_Storage_Order use System.High_Order_First;
type Arr is array (1 .. 16) of Rec;
procedure Proc (A : Arr);
end SSO9_Pkg;