2018-03-15 Steven G. Kargl <kargl@gcc.gnu.org>
[official-gcc.git] / gcc / testsuite / gnat.dg / array11.adb
blobaab7347009202059b46be6576740977973d52e65
1 -- { dg-do compile }
3 with System;
5 procedure Array11 is
7 type Rec is null record;
8 type Index_T is mod System.Memory_Size;
10 type Arr1 is array (1 .. 8) of aliased Rec; -- { dg-warning "padded" }
11 type Arr2 is array (Index_T) of aliased Rec; -- { dg-warning "padded" }
13 A1 : Arr1;
14 A2 : Arr2;
16 begin
17 null;
18 end;