mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-06 10:47:57 +02:00
16 lines
148 B
ObjectPascal
16 lines
148 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tgenfwd6;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic TTest<T: TObject> = class;
|
|
|
|
generic TTest<T: IInterface> = class
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|