Retro68/gcc/gcc/testsuite/gnat.dg/slice8_pkg3.adb
Wolfgang Thaller aaf905ce07 add gcc 4.70
2012-03-28 01:13:14 +02:00

18 lines
391 B
Ada

-- { dg-do compile }
-- { dg-options "-gnatws" }
package body Slice8_Pkg3 is
Current : Str.Lines (Str.Line_Count);
Last : Natural := 0;
function Get return Str.Paragraph is
Result : constant Str.Paragraph := (Size => Last,
Data => Current (1..Last));
begin
Last := 0;
return Result;
end Get;
end Slice8_Pkg3;