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.0.0 / tests / tbs / tb0584.pp
Size: Mime:
{ %NORUN }

program tb0584;

{$mode objfpc}

type
  TSomeObj = class
    function Test(s: String): TObject;
  end;

  TSomeOtherObj = class
  public
    function GetFoo: String;
  end;

function TSomeObj.Test(s: String): TObject;
begin

end;

function TSomeOtherObj.GetFoo: String;
begin

end;

var
  SomeObj: TSomeObj;

procedure Test;
var
  b: Boolean;
  obj: TSomeOtherObj;
begin
  b := not Assigned(SomeObj.Test(obj.GetFoo));
end;

begin

end.