mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 17:28:50 +02:00
21 lines
248 B
ObjectPascal
21 lines
248 B
ObjectPascal
unit tw11435b;
|
|
{$MODE ObjFPC}
|
|
|
|
interface
|
|
|
|
type
|
|
generic gCBla<_T> = class
|
|
function add( item: _T) : integer;
|
|
end;
|
|
|
|
CBla = specialize gCBla<Pointer>;
|
|
|
|
implementation
|
|
|
|
function gCBla.add( item: _T) : integer;
|
|
begin
|
|
result := 0;
|
|
end;
|
|
|
|
end.
|