Fix the new pr83361.c testcase
[official-gcc.git] / gcc / testsuite / gnat.dg / specs / constant1_pkg.ads
blob13300b1adaf87adebbd3d23f180f83de417ecd07
1 package Constant1_Pkg is
3 type Id_T is mod Natural'Last + 1;
5 type Timer_Id_T is tagged record
6 Id : Id_T := Id_T'Last;
7 end record;
9 Null_Timer_Id : constant Timer_Id_T := (Id => Id_T'Last - 1);
11 end Constant1_Pkg;