mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 22:27:57 +02:00
16 lines
151 B
ObjectPascal
16 lines
151 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tgenfwd7;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic TTest<T: TObject> = class;
|
|
|
|
generic TTest<const N: Integer> = class
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|