Commit a4fb8087 by Arnaud Charlet Committed by Arnaud Charlet

* gnat.dg/array_bounds_test.adb: New test.

From-SVN: r156216
parent 3d923671
2010-01-25 Arnaud Charlet <charlet@adacore.com>
* gnat.dg/array_bounds_test.adb: New test.
2010-01-25 Tobias Burnus <burnus@net-b.de>
PR fortran/42858
......
-- { dg-do run }
with Ada.Streams; use Ada.Streams;
procedure Array_Bounds_Test is
One : constant Stream_Element := 1;
Two : constant Stream_Element := 2;
Sample : constant Stream_Element_Array := (0 => One) & Two;
begin
if Sample'First /= 0 then
raise Program_Error;
end if;
if Sample'Last /= 1 then
raise Program_Error;
end if;
end Array_Bounds_Test;
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment