mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2026-01-10 00:04:14 +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.
|
|
|