mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-08 15:49:04 +02:00
17 lines
164 B
ObjectPascal
17 lines
164 B
ObjectPascal
unit tgenconst22;
|
|
|
|
{$mode delphi}
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
procedure Test<A; const N: LongInt>; forward;
|
|
|
|
procedure Test<A; const N: LongInt>;
|
|
begin
|
|
end;
|
|
|
|
end.
|
|
|