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 / webtbs / tw19974.pp
Size: Mime:
program uGenAss;

{$mode objfpc}{$H+}

uses
  Classes, SysUtils;

type
  generic TGeneric<T> = class
  public
    function Find(AObject: T): T;
  end;

function TGeneric.Find(AObject: T): T;
var
  tt: T;
begin
  if tt <> nil then;
  if AObject <> nil then;

  if Assigned(tt) then;
  if Assigned(AObject) then;
end;

begin
end.