c++: prvalue of array type [PR111286]
[official-gcc.git] / gcc / testsuite / gnat.dg / task1_pkg.ads
blob183d2395e848d7012d234e917d4d12aa28738a11
1 package Task1_Pkg is
2 subtype Typ_Bool is boolean;
4 type Typ_Task_Par is record
5 Dummy : Typ_Bool;
6 end record;
8 type Typ_Task_Par_Tab is array (1 .. 33) of aliased Typ_Task_Par;
9 task type Typ_Task (dummy : Typ_Bool);
10 end Task1_Pkg;