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 / test / timplements1.pp
Size: Mime:
{$ifdef fpc}
{$mode objfpc}
{$endif fpc}
uses
  classes;

type
  to1 = class(TObject,IInterface)
    fi : IInterface;
    property i : IInterface read fi implements IInterface;
  end;

var
  o1 : to1;
  i1,i2 : IInterface;
begin
  o1:=to1.create;
  o1.fi:=TInterfacedObject.Create;
  i1:=o1;
  i1.QueryInterface(IInterface,i2);
  if i2=nil then
    halt(1);
  o1.fi:=nil;
  i1.QueryInterface(IInterface,i2);
  if i2=nil then
    halt(1);
  o1.free;
  i1.QueryInterface(IInterface,i2);
  if i2=nil then
    halt(1);
  writeln('ok');
end.