mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 18:47:56 +02:00
27 lines
328 B
ObjectPascal
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.
|