mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-01 23:42:39 +02: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.
|
|
|