mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-12 18:10:29 +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.
|