aboutsummaryrefslogtreecommitdiffstats
path: root/gcc-4.9/gcc/testsuite/gnat.dg/array22.adb
blob: c1725934a2454a82aa15b5e2df57cc33f2ce6b55 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
-- { dg-do compile }

with System; use System;

procedure Array22 is

   type Integer_Address is mod Memory_Size;

   type Memory is array (Integer_Address range <>) of Character;

   type Chunk (First, Last : Integer_Address) is record
      Mem : Memory (First .. Last);
   end record;

   C : Chunk (1, 8);
   for C'Alignment use 8;
   pragma Unreferenced (C);

begin
   null;
end;