fpc/tests/webtbs/uw17220.pp
Jonas Maebe 5ca1bd2a32 * if the unit of a procedure call is explicitly specified, limit the search
for (overloaded) procsyms to that unit (mantis #17220)

git-svn-id: trunk@15887 -
2010-08-23 20:51:40 +00:00

18 lines
234 B
ObjectPascal

unit uw17220;
{$ifdef fpc}
{$mode objfpc}{$H+}
{$endif}
interface
function IntToHEX(Value, Digits: int64): string; overload;
implementation
function IntToHEX(Value, Digits: int64): string;
begin
IntToHEX := 'passed';
end;
end.