summaryrefslogtreecommitdiff
path: root/fpcsrc/tests/test/uunit3a.pp
blob: 328d37a79bd992c822e18a6b8bf6f5b0d4503170 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
unit uunit3a;

  interface

    uses
       uunit3b;

procedure p1(para:tpl);

  implementation

uses
  uunit3c;

procedure p1(para:tpl);
begin
end;

end.