fpc/tests/test/uprocext2.pp
fpc 790a4fe2d3 * log and id tags removed
git-svn-id: trunk@42 -
2005-05-21 09:42:41 +00:00

22 lines
267 B
ObjectPascal

unit uprocext2;
interface
uses uprocext1;
procedure proc2;
implementation
procedure proc3;[public,alias:'ExternalProc3'];
begin
writeln('proc3');
err:=false;
end;
procedure proc2;
begin
{ call proc1 so it already needs the mangledname }
proc1;
end;
end.