mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-06-05 15:38:46 +02:00
18 lines
175 B
ObjectPascal
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.
|