fpc/tests/test/tgenfunc6.pp
2015-11-21 16:53:11 +00:00

25 lines
390 B
ObjectPascal

{ test syntax of a generic method in mode delphi }
program tgenfunc6;
{$mode delphi}
type
TTest = class
function Add<T>(aLeft, aRight: T): T;
end;
function TTest.Add<T>(aLeft, aRight: T): T;
begin
Result := aLeft + aRight;
end;
var
t: TTest;
begin
if t.Add<LongInt>(2, 3) <> 5 then
Halt(1);
if t.Add<String>('Hello', 'World') <> 'HelloWorld' then
Halt(2);
end.