aboutsummaryrefslogtreecommitdiff
path: root/gcc/testsuite/gnat.dg/object_overflow2.adb
blob: a429291e80a4e2caeb6144fcee9061b4748eebf1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
-- { dg-do compile }

with Interfaces.C; use Interfaces.C;

procedure Object_Overflow2 is

  procedure Proc (x : Boolean) is begin null; end;

  type Arr is array(0 .. ptrdiff_t'Last) of Boolean;
  Obj : Arr; -- { dg-warning "Storage_Error" }

begin
  Obj(1) := True;
  Proc (Obj(1));
end;