2008-05-30 Vladimir Makarov <vmakarov@redhat.com>
[official-gcc.git] / gcc / testsuite / gnat.dg / pack8.adb
bloba3a83bab0a9444725befb2b630c7292eaec96a85
1 -- { dg-do compile }
2 -- { dg-options "-gnatws" }
4 procedure Pack8 is
6 type R is record
7 I : Integer;
8 a, b : Character;
9 end record;
11 type Ar1 is array (1..4) of R;
12 type Ar2 is array (1..4) of R;
13 pragma Pack (Ar2);
15 type R2 is record
16 A : Ar2;
17 end record;
18 for R2 use record
19 A at 0 range 0 .. 48*4-1-1; -- { dg-error "too small" }
20 end record;
22 X : Ar1;
23 Y : Ar2;
25 begin
26 Y (1) := X (1);
27 end;