blob: 13300b1adaf87adebbd3d23f180f83de417ecd07 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
package Constant1_Pkg is
type Id_T is mod Natural'Last + 1;
type Timer_Id_T is tagged record
Id : Id_T := Id_T'Last;
end record;
Null_Timer_Id : constant Timer_Id_T := (Id => Id_T'Last - 1);
end Constant1_Pkg;
|