mirror of
https://gitlab.com/freepascal.org/fpc/source.git
synced 2025-04-13 08:59:27 +02:00
22 lines
236 B
ObjectPascal
22 lines
236 B
ObjectPascal
{ %FAIL }
|
|
|
|
{ constraints must not be repeated in the definition }
|
|
|
|
program tgenfunc13;
|
|
|
|
{$mode objfpc}
|
|
|
|
type
|
|
TTest = class
|
|
generic procedure Test<T: class>;
|
|
end;
|
|
|
|
generic procedure TTest.Test<T: class>;
|
|
begin
|
|
|
|
end;
|
|
|
|
begin
|
|
|
|
end.
|