no message

This commit is contained in:
florian 2005-04-02 07:56:33 +00:00
parent 54acaa32c3
commit db77655ec7

13
tests/webtbs/tw3774.pp Normal file
View File

@ -0,0 +1,13 @@
{ Source provided for Free Pascal Bug Report 3774 }
{ Submitted by "Sergey@michint" on 2005-03-11 }
{ e-mail: }
{$C+}
var
i, ec: Integer;
begin
Val('0x123', i, ec);
Assert(ec=0);
Assert(i=$123);
writeln('ok');
end.