mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-05 17:28:05 +02:00
19 lines
177 B
ObjectPascal
19 lines
177 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tgenfwd5;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TSomeClass = class
|
|
end;
|
|
|
|
generic TTest<T: TObject> = class;
|
|
|
|
generic TTest<T: TSomeClass> = class
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|