fpc/tests/test/tgenconst21.pp

17 lines
180 B
ObjectPascal

unit tgenconst21;
{$mode objfpc}
interface
implementation
generic procedure Test<A; const N: LongInt>; forward;
generic procedure Test<A; const N: LongInt>;
begin
end;
end.