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