mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 16:47:53 +02:00
14 lines
114 B
ObjectPascal
14 lines
114 B
ObjectPascal
{ %fail }
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic TG1<T> = class
|
|
end;
|
|
|
|
generic TG2<T> = class(TG1)
|
|
end;
|
|
|
|
begin
|
|
end.
|