mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 13:08:13 +02:00
16 lines
155 B
ObjectPascal
16 lines
155 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tgenfwd10;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic TTest<const N: Integer> = class;
|
|
|
|
generic TTest<const N: Byte> = class
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|