mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 13:09:35 +02:00
20 lines
155 B
ObjectPascal
20 lines
155 B
ObjectPascal
unit uunit3a;
|
|
|
|
interface
|
|
|
|
uses
|
|
uunit3b;
|
|
|
|
procedure p1(para:tpl);
|
|
|
|
implementation
|
|
|
|
uses
|
|
uunit3c;
|
|
|
|
procedure p1(para:tpl);
|
|
begin
|
|
end;
|
|
|
|
end.
|