fpc/tests/webtbs/tw17220.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

15 lines
249 B
ObjectPascal

program project1;
{$ifdef fpc}
{$mode objfpc}{$H+}
{$endif}
uses SysUtils, uw17220;
var
A, B: int64;
begin
writeln(uw17220.IntToHEX(16, 0)); {Here ERROR: called SysUtils.IntToHEX }
if uw17220.IntToHEX(16, 0)<>'passed' then
halt(1);
end.