fpc/tests/webtbs/tw7173.pp
Jonas Maebe f3f8a76559 * fixed mantis 7173 (properly check parameters in unit
implementation in Delphi/TP mode if they are repeated)

git-svn-id: trunk@5682 -
2006-12-22 17:48:28 +00:00

24 lines
234 B
ObjectPascal

{ %norun }
{ %fail }
{$mode delphi}
unit tw7173;
interface
uses
SysUtils;
function GetVal(astr : string) : Integer;
implementation
function GetVal(const astr : string) : Integer;
begin
Result := StrToInt(astr);
end;
end.