Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
fpc-src / usr / share / fpcsrc / 3.2.0 / tests / test / toperator10.pp
Size: Mime:
{ %fail}
program toperator10;

{$mode delphi}

type
  TFoo = record
    F: Integer;
  end;

// don't allow class operator declaration outside the class
class operator Add(A, B: TFoo): TFoo;
begin
  Result.F := A.F + B.F;
end;

begin
end.