2 -- { dg-options "-gnatws" }
4 procedure Biased_Subtype
is
6 CIM_Max_AA
: constant := 9_999_999
;
7 CIM_Min_AA
: constant := -999_999
;
9 type TIM_AA
is range CIM_Min_AA
..CIM_Max_AA
+ 1;
10 for TIM_AA
'Size use 24;
12 subtype STIM_AA
is TIM_AA
range TIM_AA
(CIM_Min_AA
)..TIM_AA
(CIM_Max_AA
);
17 if Integer(SAA
) /= 1 then