mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-22 01:12:11 +01:00
parameters that do not appear in forward/interface definitions
(mantis #19434)
* added test for #17136 already works
git-svn-id: trunk@21524 -
24 lines
355 B
ObjectPascal
24 lines
355 B
ObjectPascal
{ %norun }
|
|
|
|
unit tw19434a;
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
function Connect(const aHost: string; const aPort: Word = 21): Boolean; overload;
|
|
function Connect: Boolean; overload;
|
|
|
|
implementation
|
|
|
|
function Connect(const aHost: string; const aPort: Word): Boolean;
|
|
begin
|
|
end;
|
|
|
|
|
|
function Connect: Boolean;
|
|
begin
|
|
end;
|
|
|
|
end.
|
|
|