fpc/tests/webtbs/tw21878.pp
Jonas Maebe 562b968b16 * now that copy() expressions are only translated into calls during the
first pass, we have to manually set the varstate of its parameters during
    the typecheck pass (mantis #21878)

git-svn-id: trunk@21106 -
2012-04-28 21:33:29 +00:00

24 lines
336 B
ObjectPascal

{ %norun }
{ %opt=-vn -Sen }
{$mode objfpc}{$H+}
uses
Classes, SysUtils;
function DoSomething(const AName: string): integer;
var
i, l: Integer;
begin
Result := 0;;
l := Length(AName);
for i:= 1 to Paramcount do begin
if copy(ParamStr(i),1, l) = AName then
inc(Result);
end;
end;
begin
DoSomething('a');
end.