view gcc/testsuite/gnat.dg/task1_pkg.ads @ 145:1830386684a0

gcc-9.2.0
author anatofuz
date Thu, 13 Feb 2020 11:34:05 +0900
parents 84e7813d76e9
children
line wrap: on
line source

package Task1_Pkg is
   subtype Typ_Bool is boolean;

   type Typ_Task_Par is record
      Dummy : Typ_Bool;
   end record;

   type Typ_Task_Par_Tab is array (1 .. 33) of aliased Typ_Task_Par;
   task type Typ_Task (dummy : Typ_Bool);
end Task1_Pkg;