fpc/tests/webtbs/tw11169.pp
Jonas Maebe 57087da620 * return an empty string for paramstr(value>paramcount) (already correct
for other targets, mantis )

git-svn-id: trunk@10704 -
2008-04-18 16:56:44 +00:00

8 lines
95 B
ObjectPascal

var
l: longint;
begin
for l:=1 to 255 do
if paramstr(l) <> '' then
halt(1);
end.