runtime: allow preemption in fast syscall return
[official-gcc.git] / gcc / testsuite / gnat.dg / aggr22.adb
bloba9eb2e700b6414d3c8725aaa937dd8ac633d28ee
1 -- { dg-do compile }
3 package body Aggr22 is
5 type Ptr is access all Integer;
6 type Arr is array (Positive range <>) of Ptr;
8 procedure Proc is
9 A : Arr (1 .. 33);
10 begin
11 A := (1 => null, 2 .. 32 => My_Rec.I'Access, 33 => null);
12 end;
14 end Aggr22;