mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-12-01 07:37:16 +01:00
19 lines
176 B
ObjectPascal
19 lines
176 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tgenconst25;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
generic procedure Test<A; const N: LongInt>; forward;
|
|
|
|
generic procedure Test<A; N>;
|
|
begin
|
|
end;
|
|
|
|
end.
|
|
|