mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-07 11:28:09 +02:00
22 lines
216 B
ObjectPascal
22 lines
216 B
ObjectPascal
{ %FAIL }
|
|
|
|
unit tgenfunc14;
|
|
|
|
{$mode objfpc}
|
|
|
|
{ constraints must not be repeated in the definition }
|
|
|
|
interface
|
|
|
|
generic procedure Test<T: class>;
|
|
|
|
implementation
|
|
|
|
generic procedure Test<T: class>;
|
|
begin
|
|
|
|
end;
|
|
|
|
end.
|
|
|