compiler: give error for non-int arguments to make
[official-gcc.git] / gcc / testsuite / gnat.dg / sso2.ads
blob36d37bc92ae2c78b52fddb7ee996097d42810b1b
1 with System;
3 package SSO2 is
5 type Arr1 is array (1 .. 4) of Character;
6 for Arr1'Scalar_Storage_Order use System.High_Order_First;
8 type Arr2 is array (1 .. 4) of Character;
9 for Arr2'Scalar_Storage_Order use System.Low_Order_First;
11 procedure Proc (A1 : Arr1; A2 : out Arr2);
13 end SSO2;