fpc/tests/webtbs/tw15966.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
155 B
ObjectPascal

{ %norun }
{ %opt=-vh -Seh }
program tw15966;
uses
uw15966;
procedure test(c: char); public; overload;
begin
writeln(c);
end;
begin
test(0);
end.