fpc/tests/webtbs/tw19974.pp
2011-08-12 20:33:22 +00:00

27 lines
328 B
ObjectPascal

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.