mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 14:49:47 +02:00
17 lines
178 B
ObjectPascal
17 lines
178 B
ObjectPascal
{ %norun }
|
|
|
|
unit tw10210;
|
|
{$mode objfpc}
|
|
interface
|
|
|
|
type
|
|
generic TSomeList<TElem> = class
|
|
end;
|
|
|
|
TSomeClassList = specialize TSomeList<integer>;
|
|
|
|
implementation
|
|
|
|
begin
|
|
end.
|