fpc/tests/webtbf/tw4777.pp
peter cbf91de10f * new test
git-svn-id: trunk@2494 -
2006-02-09 07:54:25 +00:00

28 lines
349 B
ObjectPascal

{ %fail }
{ Source provided for Free Pascal Bug Report 4777 }
{ Submitted by "Phil H." on 2006-02-06 }
{ e-mail: pjhess@purdue.edu }
unit tw4777;
{$mode objfpc}
interface
uses
SysUtils;
function GetVal(astr : string) : Integer;
implementation
function GetVal(const astr : string) : Integer;
begin
Result := StrToInt(astr);
end;
end.