mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-11 14:48:47 +02:00
14 lines
147 B
ObjectPascal
14 lines
147 B
ObjectPascal
{$mode objfpc}
|
|
uses fgl;
|
|
|
|
type
|
|
TFoo1 = class(TObject);
|
|
|
|
TFoo2 = class
|
|
type
|
|
TFooList = specialize TFPGList<TFoo1>;
|
|
end;
|
|
|
|
begin
|
|
end.
|