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

with System; 
procedure align_check is
   N_Allocated_Buffers : Natural := 0;
--      
   function New_Buffer (N_Bytes : Natural) return System.Address is
   begin   
      N_Allocated_Buffers := N_Allocated_Buffers + 1;
      return System.Null_Address;
   end;    
--      
   Buffer_Address : constant System.Address := New_Buffer (N_Bytes => 8);
   N : Natural;
   for N'Address use Buffer_Address;
--      
begin   
   if N_Allocated_Buffers /= 1 then
      raise Program_Error;
   end if; 
end;