summaryrefslogtreecommitdiff
path: root/tests/webtbf/uw25283.pp
blob: 0b821f7de31d444d8fe57ac8051cc33416b67623 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
unit uw25283;
{$ifdef FPC}{$mode objfpc}{$h+}{$endif}
interface

procedure proc( arg1: longint );

implementation

procedure proc( arg1: longint );
begin
end;

procedure proc( arg1, arg2: longint ); 
begin
end;

end.