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 / tbf / tb0165.pp
Size: Mime:
{ %fail }

{$ifdef fpc}{$mode objfpc}{$endif}
type
  tmyclass = class
    function f2 : ansistring;
    function f : widestring;
    procedure p(var v);
  end;

procedure tmyclass.p(var v);
  begin
  end;

 function tmyclass.f2 : ansistring;
  begin
    p(pchar(result));
  end;

function tmyclass.f : widestring;
  begin
    p(pwidechar(result));
  end;

begin
end.