mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 06:29:32 +02:00

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 -
16 lines
141 B
ObjectPascal
16 lines
141 B
ObjectPascal
unit uw15966;
|
|
|
|
interface
|
|
|
|
procedure test(a: longint); overload;
|
|
|
|
implementation
|
|
|
|
procedure test(a: longint);
|
|
begin
|
|
writeln(a);
|
|
end;
|
|
|
|
|
|
end.
|