aboutsummaryrefslogtreecommitdiffstats
path: root/test/FrontendAda/negative_field_offset.adb
blob: 02e3dac23aff70211cdd7a5a21ed3afc79468af0 (plain)
1
2
3
4
5
6
7
8
9
10
-- RUN: %llvmgcc -c %s
with System;
procedure Negative_Field_Offset (N : Integer) is
   type String_Pointer is access String;
   --  Force use of a thin pointer.
   for String_Pointer'Size use System.Word_Size;
   P : String_Pointer;
begin
   P := new String (1 .. N);
end;