view gcc/testsuite/gnat.dg/task1_pkg.ads @ 131:84e7813d76e9

gcc-8.2
author mir3636
date Thu, 25 Oct 2018 07:37:49 +0900
parents
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;