mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:08:01 +02:00
16 lines
180 B
ObjectPascal
16 lines
180 B
ObjectPascal
unit tw11436;
|
|
{$MODE ObjFPC}
|
|
|
|
interface
|
|
|
|
type
|
|
generic gIBla<_T> = interface
|
|
function add( item: _T) : integer;
|
|
end;
|
|
|
|
IBla = specialize gIBla<byte>;
|
|
|
|
implementation
|
|
|
|
end.
|