mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:28:05 +02:00
9 lines
149 B
ObjectPascal
9 lines
149 B
ObjectPascal
{ %fail }
|
|
{$mode objfpc}
|
|
type generic TListNode<_T> = class(TObject)
|
|
Data: _T;
|
|
end;
|
|
type t = specialize TListNode<TListNode>;
|
|
begin
|
|
end.
|