fpc/tests/webtbs/uw15966.pp
Jonas Maebe 9412d4abd2 * add a reference to the procsym corresponding to the chosen overloaded
procdef, so that the unit containing it is marked as "used" (mantis #15966)

    Even better would be if the unit containing the originally found procsym
    were not also marked as used, but that would require a significant
    rewrite (all symbols found using symboltable helpers are automatically
    marked by those routines)

git-svn-id: trunk@21501 -
2012-06-06 18:46:01 +00:00

16 lines
141 B
ObjectPascal

unit uw15966;
interface
procedure test(a: longint); overload;
implementation
procedure test(a: longint);
begin
writeln(a);
end;
end.