fpc/tests/test/tgenconst27.pp

18 lines
175 B
ObjectPascal

{ %FAIL }
unit tgenconst27;
{$mode objfpc}
interface
generic procedure Test<const A: LongInt>;
implementation
generic procedure Test<const A: LongInt>;
begin
end;
end.