mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-14 01:59:28 +02:00
20 lines
208 B
ObjectPascal
20 lines
208 B
ObjectPascal
{$mode objfpc}
|
|
unit tw11431;
|
|
|
|
interface
|
|
|
|
uses sysutils;
|
|
|
|
type
|
|
|
|
generic IGenericCollection<_T> = interface
|
|
end;
|
|
|
|
generic CGenericCollection<_T> = class( IGenericCollection)
|
|
end;
|
|
|
|
implementation
|
|
|
|
|
|
end.
|