fpc/tests/webtbs/tw6641.pp
Jonas Maebe 47ff7b62e7 * fixed overload choosing algorithm so it's Delphi-compatible +
tests (and test generator) (also fixes mantis 6641)

git-svn-id: trunk@5732 -
2006-12-28 16:54:07 +00:00

18 lines
196 B
ObjectPascal

{$ifdef fpc}
{$mode delphi}
{$else}
{$apptype console}
{$endif}
Uses Sysutils,variants;
var v : variant;
s : string;
begin
v := 1;
s:=inttostr(v);
if (s <> '1') then
halt(1);
end.