mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 15:47:53 +02:00
20 lines
191 B
ObjectPascal
20 lines
191 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tgenconst23;
|
|
|
|
{$mode objfpc}
|
|
|
|
interface
|
|
|
|
implementation
|
|
|
|
generic procedure Test<A; const N: LongInt>; forward;
|
|
|
|
generic procedure Test<A; const N: String>;
|
|
begin
|
|
end;
|
|
|
|
|
|
end.
|
|
|