mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 11:18:18 +02:00

The main adjustments were as follows: - fixing coding style and identation - fixing some typos - using a better name for the property in tcallcandidates which holds the symbols created for anonymous parameter values
54 lines
743 B
ObjectPascal
54 lines
743 B
ObjectPascal
{%NORUN}
|
|
{$mode delphi}
|
|
{$modeswitch implicitfunctionspecialization}
|
|
{
|
|
Grab bag to test Delphi mode
|
|
}
|
|
|
|
program timpfuncspez35;
|
|
|
|
{ Classes }
|
|
|
|
type
|
|
TMyClass = class
|
|
class procedure Call<T>(msg: T);
|
|
procedure DoThis<T>(msg: T);
|
|
end;
|
|
|
|
class procedure TMyClass.Call<T>(msg:T);
|
|
begin
|
|
end;
|
|
|
|
procedure TMyClass.DoThis<T>(msg:T);
|
|
begin
|
|
end;
|
|
|
|
{ Methods }
|
|
|
|
procedure DoThis<A>(param1: A);
|
|
begin
|
|
end;
|
|
|
|
procedure DoThis<A, B>(param1: A; param2: B);
|
|
begin
|
|
end;
|
|
|
|
procedure DoThis<A, B, C>(param1: A; param2: B; param3: C);
|
|
begin
|
|
end;
|
|
|
|
var
|
|
obj: TMyClass;
|
|
begin
|
|
TMyClass.Call('Hello World');
|
|
obj := TMyClass.create;
|
|
obj.DoThis(1);
|
|
|
|
DoThis(1);
|
|
DoThis(1,2);
|
|
DoThis(1,2,3);
|
|
|
|
DoThis(1);
|
|
DoThis(1,'aaa');
|
|
DoThis(1,'aaa',nil);
|
|
end. |