mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 07:47:59 +02:00
19 lines
277 B
ObjectPascal
19 lines
277 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
uses gvector;
|
|
|
|
type
|
|
generic TObjectVector<T> = class(specialize TVector<T>)
|
|
procedure X; //Destroy; override;
|
|
end;
|
|
|
|
TMyVector = specialize TObjectVector<TObject>;
|
|
|
|
//destructor TMyVector.Destroy;
|
|
procedure TMyVector.X;
|
|
begin
|
|
end;
|
|
|
|
begin
|
|
end.
|