aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/sso9_pkg.ads
blob: d7558973bd9611bbfa44ead9ae11ce9b795309a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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;