mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-10 03:08:43 +02:00
16 lines
134 B
ObjectPascal
16 lines
134 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tgenfwd4;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic TTest<T: class> = class;
|
|
|
|
generic TTest<T> = class
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|