fpc/tests/webtbs/tw3805.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

21 lines
314 B
ObjectPascal

{$mode objfpc}{$H+}
uses
classes;
type
stringarty = array of string;
var
ar1,ar2: stringarty;
begin
setlength(ar1,4);
ar2:= copy(ar1,1,3);
if (length(ar2) <> 3) then
halt(1);
ar2:= copy(ar1,1,4);
if (length(ar2) <> 3) then
halt(2);
ar2:= copy(ar1,1,5);
if (length(ar2) <> 3) then
halt(3);
end.