mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-09 14:48:51 +02:00
16 lines
157 B
ObjectPascal
16 lines
157 B
ObjectPascal
{ %FAIL }
|
|
|
|
program tgenfwd12;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
generic TTest<const N: Integer> = class;
|
|
|
|
generic TTest<const N: Single> = class
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|